diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4eeb70c..b9148b2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,4 +30,4 @@ jobs: - name: Test working-directory: ${{github.workspace}}/build - run: ctest -C ${{matrix.build_type}} --output-on-failure \ No newline at end of file + run: ctest -V -C ${{matrix.build_type}} --output-on-failure \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt index d80cd38..5df20f7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -29,7 +29,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_CXX_EXTENSIONS OFF) enable_cxx_compiler_flag_if_supported(-pedantic) -enable_cxx_compiler_flag_if_supported(-ggdb) +#enable_cxx_compiler_flag_if_supported(-ggdb) if(MSVC) add_compile_options(-Zc:__cplusplus) @@ -45,4 +45,3 @@ if (BUILD_TESTING) enable_testing() add_subdirectory(test) endif(BUILD_TESTING) - diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 2745e3c..8d33cfc 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -40,7 +40,7 @@ function(cxx_test source) message(STATUS "runtime = ${RUNTIME_OUTPUT_DIRECTORY}") # this is only a gcc option #set_target_properties(${target} PROPERTIES COMPILE_FLAGS "-Wno-effc++") - add_test(NAME ${target} COMMAND ${RUNTIME_OUTPUT_DIRECTORY}/${target}) + add_test(NAME ${target} COMMAND ${RUNTIME_OUTPUT_DIRECTORY}/${target} -v) #add_custom_command(TARGET test_all # COMMAND $ #)