diff options
Diffstat (limited to '')
-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 |
7 files changed, 14 insertions, 14 deletions
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 |