aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/CMakeLists.txt6
-rw-r--r--test/foobar.cpp (renamed from test/lab_rat.cpp)6
2 files changed, 6 insertions, 6 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index c910931..619a51e 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -1,7 +1,7 @@
set(CC_STATIC_RUNTIME OFF)
-add_executable(lab_rat lab_rat.cpp)
+add_executable(foobar foobar.cpp)
-install(TARGETS lab_rat RUNTIME DESTINATION bin)
+install(TARGETS foobar RUNTIME DESTINATION bin)
if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
- install(FILES "$<TARGET_PDB_FILE:lab_rat>" DESTINATION bin OPTIONAL)
+ install(FILES "$<TARGET_PDB_FILE:foobar>" DESTINATION bin OPTIONAL)
endif()
diff --git a/test/lab_rat.cpp b/test/foobar.cpp
index ed204b6..cdb8a97 100644
--- a/test/lab_rat.cpp
+++ b/test/foobar.cpp
@@ -1,4 +1,4 @@
-namespace lab_rat {
+namespace foobar_ns {
int exit_code = 1;
@@ -14,8 +14,8 @@ int foo() {
return bar() * 2;
}
-} // namespace lab_rat
+} // namespace foobar_ns
int main() {
- return lab_rat::foo() * 2;
+ return foobar_ns::foo() * 2;
}