From 022adfcbfbfd6e259f722d4f7a77af5a8cc83f57 Mon Sep 17 00:00:00 2001 From: Izaak Beekman Date: Tue, 10 Dec 2024 14:09:13 -0800 Subject: [PATCH] Fix bad working directory for tests case-insensitive macOS lead me to miss this until tested on UO machine --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4f80f6e..40368de 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -533,7 +533,7 @@ function(compile_instrumented test_src) add_test(NAME compile_${lower_comp}_${TEST_NAME} COMMAND ${TAUC} ${TAUC_OPTS} ${compiler_opts} -o ${TEST_BASE_NAME}.${lower_comp} ${test_path} - WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/${lower_comp} + WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/${comp} ) set_tests_properties(compile_${lower_comp}_${TEST_NAME} PROPERTIES