diff options
-rw-r--r-- | .appveyor.yml | 6 | ||||
-rw-r--r-- | test/CMakeLists.txt | 6 | ||||
-rw-r--r-- | test/symbols.cpp (renamed from test/foobar.cpp) | 0 |
3 files changed, 6 insertions, 6 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 1615d2b..f07fecf 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -36,9 +36,9 @@ after_build: - appveyor.exe PushArtifact "%APPVEYOR_PROJECT_NAME%-%PLATFORM%-%CONFIGURATION%.zip" test_script: - - '"%install_dir%\bin\enum_symbols" --pdb "%install_dir%\bin\foobar.pdb"' - - '"%install_dir%\bin\enum_symbols" --pdb "%install_dir%\bin\foobar.pdb" --mask "foobar!foobar_ns*"' - - '"%install_dir%\bin\enum_symbols" --pdb "%install_dir%\bin\foobar.pdb" --functions --mask "foobar_ns*"' + - '"%install_dir%\bin\enum_symbols" --pdb "%install_dir%\bin\symbols.pdb"' + - '"%install_dir%\bin\enum_symbols" --pdb "%install_dir%\bin\symbols.pdb" --mask "foobar!foobar_ns*"' + - '"%install_dir%\bin\enum_symbols" --pdb "%install_dir%\bin\symbols.pdb" --functions --mask "foobar_ns*"' - '"%install_dir%\bin\call_stack"' diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 656caa9..4574211 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -8,9 +8,9 @@ endif() set(CC_STATIC_RUNTIME OFF) # Reduce the number of symbols in this test utility -add_executable(foobar foobar.cpp) +add_executable(symbols symbols.cpp) -install(TARGETS foobar RUNTIME DESTINATION bin) +install(TARGETS symbols RUNTIME DESTINATION bin) if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") - install(FILES "$<TARGET_PDB_FILE:foobar>" DESTINATION bin OPTIONAL) + install(FILES "$<TARGET_PDB_FILE:symbols>" DESTINATION bin OPTIONAL) endif() diff --git a/test/foobar.cpp b/test/symbols.cpp index 7ace3bb..7ace3bb 100644 --- a/test/foobar.cpp +++ b/test/symbols.cpp |