From fa953a3d972dcd1422294f6563c052493998a3fa Mon Sep 17 00:00:00 2001 From: "E. Scott Daniels" Date: Wed, 19 Aug 2020 14:59:38 -0400 Subject: [PATCH] Correct unit test invocation in cmake file The CMake invocation of the unit test was attempting to use Ksh which isn't installed in the container. Switched it to bash. Issue-ID: RIC-632 Signed-off-by: E. Scott Daniels Change-Id: I9c2576a5e14ccdb7a1f24c2e32c22978d26a57d0 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 78964fe..3c2867a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -40,7 +40,7 @@ enable_testing() # add_test( NAME drive_listener_tests - COMMAND ksh run_unit_test.ksh CMBUILD=${CMAKE_CURRENT_BINARY_DIR} + COMMAND bash run_unit_test.ksh CMBUILD=${CMAKE_CURRENT_BINARY_DIR} WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/../sidecars/listener ) #WORKING_DIRECTORY ../sidecars/listener -- 2.16.6