diff options
Diffstat (limited to '')
-rw-r--r-- | test/CMakeLists.txt | 2 | ||||
-rw-r--r-- | test/call_stack.cpp | 4 | ||||
-rw-r--r-- | test/test_lib.cpp | 4 | ||||
-rw-r--r-- | test/test_lib.hpp | 4 | ||||
-rw-r--r-- | test/test_lib_api.hpp | 4 | ||||
-rw-r--r-- | test/unit_tests/CMakeLists.txt | 2 | ||||
-rw-r--r-- | test/unit_tests/call_stack.cpp | 4 | ||||
-rw-r--r-- | test/unit_tests/dbghelp.cpp | 4 | ||||
-rw-r--r-- | test/unit_tests/error.cpp | 4 | ||||
-rw-r--r-- | test/unit_tests/fixtures.hpp | 4 | ||||
-rw-r--r-- | test/unit_tests/main.cpp | 6 | ||||
-rw-r--r-- | test/unit_tests/paths.hpp | 4 |
12 files changed, 23 insertions, 23 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 86f7d1a..17770c9 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,5 +1,5 @@ add_library(test_lib SHARED test_lib.cpp) -target_link_libraries(test_lib PRIVATE pdb_repo) +target_link_libraries(test_lib PRIVATE winapi_debug) target_include_directories(test_lib PUBLIC .) target_compile_definitions(test_lib PRIVATE TEST_LIB_EXPORTS) install(TARGETS test_lib RUNTIME DESTINATION bin/test) diff --git a/test/call_stack.cpp b/test/call_stack.cpp index fb5f7b8..a2f86d4 100644 --- a/test/call_stack.cpp +++ b/test/call_stack.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2020 Egor Tensin <Egor.Tensin@gmail.com> -// This file is part of the "PDB repository" project. -// For details, see https://github.com/egor-tensin/pdb-repo. +// This file is part of the "winapi-debug" project. +// For details, see https://github.com/egor-tensin/winapi-debug. // Distributed under the MIT License. #include <test_lib.hpp> diff --git a/test/test_lib.cpp b/test/test_lib.cpp index 0c4bd27..cb3d1d7 100644 --- a/test/test_lib.cpp +++ b/test/test_lib.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2020 Egor Tensin <Egor.Tensin@gmail.com> -// This file is part of the "PDB repository" project. -// For details, see https://github.com/egor-tensin/pdb-repo. +// This file is part of the "winapi-debug" project. +// For details, see https://github.com/egor-tensin/winapi-debug. // Distributed under the MIT License. #include "test_lib.hpp" diff --git a/test/test_lib.hpp b/test/test_lib.hpp index ced9100..2506d93 100644 --- a/test/test_lib.hpp +++ b/test/test_lib.hpp @@ -1,6 +1,6 @@ // Copyright (c) 2020 Egor Tensin <Egor.Tensin@gmail.com> -// This file is part of the "PDB repository" project. -// For details, see https://github.com/egor-tensin/pdb-repo. +// This file is part of the "winapi-debug" project. +// For details, see https://github.com/egor-tensin/winapi-debug. // Distributed under the MIT License. #pragma once diff --git a/test/test_lib_api.hpp b/test/test_lib_api.hpp index 8778df1..27c01a6 100644 --- a/test/test_lib_api.hpp +++ b/test/test_lib_api.hpp @@ -1,6 +1,6 @@ // Copyright (c) 2020 Egor Tensin <Egor.Tensin@gmail.com> -// This file is part of the "PDB repository" project. -// For details, see https://github.com/egor-tensin/pdb-repo. +// This file is part of the "winapi-debug" project. +// For details, see https://github.com/egor-tensin/winapi-debug. // Distributed under the MIT License. #pragma once diff --git a/test/unit_tests/CMakeLists.txt b/test/unit_tests/CMakeLists.txt index 309333d..f566c0b 100644 --- a/test/unit_tests/CMakeLists.txt +++ b/test/unit_tests/CMakeLists.txt @@ -1,7 +1,7 @@ find_package(Boost REQUIRED COMPONENTS filesystem unit_test_framework) add_executable(unit_tests main.cpp call_stack.cpp dbghelp.cpp error.cpp) -target_link_libraries(unit_tests PRIVATE pdb_repo test_lib) +target_link_libraries(unit_tests PRIVATE test_lib winapi_debug) target_link_libraries(unit_tests PRIVATE Boost::disable_autolinking Boost::filesystem diff --git a/test/unit_tests/call_stack.cpp b/test/unit_tests/call_stack.cpp index 4adef63..d4c9c0e 100644 --- a/test/unit_tests/call_stack.cpp +++ b/test/unit_tests/call_stack.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2020 Egor Tensin <Egor.Tensin@gmail.com> -// This file is part of the "PDB repository" project. -// For details, see https://github.com/egor-tensin/pdb-repo. +// This file is part of the "winapi-debug" project. +// For details, see https://github.com/egor-tensin/winapi-debug. // Distributed under the MIT License. #include "fixtures.hpp" diff --git a/test/unit_tests/dbghelp.cpp b/test/unit_tests/dbghelp.cpp index b4ba1ce..2393b77 100644 --- a/test/unit_tests/dbghelp.cpp +++ b/test/unit_tests/dbghelp.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2020 Egor Tensin <Egor.Tensin@gmail.com> -// This file is part of the "PDB repository" project. -// For details, see https://github.com/egor-tensin/pdb-repo. +// This file is part of the "winapi-debug" project. +// For details, see https://github.com/egor-tensin/winapi-debug. // Distributed under the MIT License. #include "fixtures.hpp" diff --git a/test/unit_tests/error.cpp b/test/unit_tests/error.cpp index a1ae977..9faf1e0 100644 --- a/test/unit_tests/error.cpp +++ b/test/unit_tests/error.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2020 Egor Tensin <Egor.Tensin@gmail.com> -// This file is part of the "PDB repository" project. -// For details, see https://github.com/egor-tensin/pdb-repo. +// This file is part of the "winapi-debug" project. +// For details, see https://github.com/egor-tensin/winapi-debug. // Distributed under the MIT License. #include <pdb/all.hpp> diff --git a/test/unit_tests/fixtures.hpp b/test/unit_tests/fixtures.hpp index 60047df..78e7a8b 100644 --- a/test/unit_tests/fixtures.hpp +++ b/test/unit_tests/fixtures.hpp @@ -1,6 +1,6 @@ // Copyright (c) 2020 Egor Tensin <Egor.Tensin@gmail.com> -// This file is part of the "PDB repository" project. -// For details, see https://github.com/egor-tensin/pdb-repo. +// This file is part of the "winapi-debug" project. +// For details, see https://github.com/egor-tensin/winapi-debug. // Distributed under the MIT License. #pragma once diff --git a/test/unit_tests/main.cpp b/test/unit_tests/main.cpp index cacb02f..522270f 100644 --- a/test/unit_tests/main.cpp +++ b/test/unit_tests/main.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2020 Egor Tensin <Egor.Tensin@gmail.com> -// This file is part of the "PDB repository" project. -// For details, see https://github.com/egor-tensin/pdb-repo. +// This file is part of the "winapi-debug" project. +// For details, see https://github.com/egor-tensin/winapi-debug. // Distributed under the MIT License. -#define BOOST_TEST_MODULE pdb_repo tests +#define BOOST_TEST_MODULE winapi_debug tests #include <boost/test/unit_test.hpp> diff --git a/test/unit_tests/paths.hpp b/test/unit_tests/paths.hpp index afc15ec..7750eb5 100644 --- a/test/unit_tests/paths.hpp +++ b/test/unit_tests/paths.hpp @@ -1,6 +1,6 @@ // Copyright (c) 2020 Egor Tensin <Egor.Tensin@gmail.com> -// This file is part of the "PDB repository" project. -// For details, see https://github.com/egor-tensin/pdb-repo. +// This file is part of the "winapi-debug" project. +// For details, see https://github.com/egor-tensin/winapi-debug. // Distributed under the MIT License. #pragma once |