From: E. Scott Daniels Date: Wed, 19 Aug 2020 18:59:38 +0000 (-0400) Subject: Correct unit test invocation in cmake file X-Git-Tag: 1.7.0~12 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=fa953a3d972dcd1422294f6563c052493998a3fa;p=ric-app%2Fmc.git 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 --- 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