From: E. Scott Daniels Date: Tue, 25 Aug 2020 17:08:19 +0000 (-0400) Subject: Fix CMake to reference unit test in correct dir X-Git-Tag: 1.7.0~7 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F04%2F4604%2F1;p=ric-app%2Fmc.git Fix CMake to reference unit test in correct dir The unit test work directory was incorrect in the CMake file. Issue-ID: RIC-632 Signed-off-by: E. Scott Daniels Change-Id: I7ab21deef0b63a4a148d873aab21d73d858f5931 --- diff --git a/CMakeLists.txt b/CMakeLists.txt index c23676a..9470929 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -41,5 +41,5 @@ enable_testing() add_test( NAME drive_listener_tests COMMAND bash run_unit_test.ksh CMBUILD=${CMAKE_CURRENT_BINARY_DIR} - WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/../sidecars/listener_test + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/../sidecars/listener/test )