From be50ad395f97a264395d1950e30752bb927105d5 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Mon, 14 Sep 2020 17:13:43 +0300 Subject: add missing copyright headers --- test/unit_tests/call_stack.cpp | 9 +++++++-- test/unit_tests/dbghelp.cpp | 5 +++++ test/unit_tests/error.cpp | 5 +++++ test/unit_tests/fixtures.hpp | 5 +++++ test/unit_tests/main.cpp | 5 +++++ test/unit_tests/paths.hpp | 5 +++++ 6 files changed, 32 insertions(+), 2 deletions(-) (limited to 'test/unit_tests') diff --git a/test/unit_tests/call_stack.cpp b/test/unit_tests/call_stack.cpp index cc5b74e..531562e 100644 --- a/test/unit_tests/call_stack.cpp +++ b/test/unit_tests/call_stack.cpp @@ -1,3 +1,8 @@ +// Copyright (c) 2020 Egor Tensin +// This file is part of the "PDB repository" project. +// For details, see https://github.com/egor-tensin/pdb-repo. +// Distributed under the MIT License. + #include "fixtures.hpp" #include @@ -17,7 +22,7 @@ BOOST_AUTO_TEST_CASE(call_stack) { try { test_ns::throw_call_stack(); } catch (const pdb::CallStack& call_stack) { - // First, check that the call stack have been caught. + // First, check that the call stack has been caught. BOOST_TEST(true, "Caught the call stack"); // Debug output: @@ -49,7 +54,7 @@ BOOST_AUTO_TEST_CASE(call_stack) { } { - // Third, check that the expected function frames are in the call stack. + // Third, check that the expected function addresses are in the call stack. const auto expected = expected_function_addresses(); const auto check = [&](pdb::Address addr) { diff --git a/test/unit_tests/dbghelp.cpp b/test/unit_tests/dbghelp.cpp index ea64939..b4ba1ce 100644 --- a/test/unit_tests/dbghelp.cpp +++ b/test/unit_tests/dbghelp.cpp @@ -1,3 +1,8 @@ +// Copyright (c) 2020 Egor Tensin +// This file is part of the "PDB repository" project. +// For details, see https://github.com/egor-tensin/pdb-repo. +// Distributed under the MIT License. + #include "fixtures.hpp" #include diff --git a/test/unit_tests/error.cpp b/test/unit_tests/error.cpp index 10eb8b4..f18a2e7 100644 --- a/test/unit_tests/error.cpp +++ b/test/unit_tests/error.cpp @@ -1,3 +1,8 @@ +// Copyright (c) 2020 Egor Tensin +// This file is part of the "PDB repository" project. +// For details, see https://github.com/egor-tensin/pdb-repo. +// Distributed under the MIT License. + #include #include diff --git a/test/unit_tests/fixtures.hpp b/test/unit_tests/fixtures.hpp index fadd393..7572e0e 100644 --- a/test/unit_tests/fixtures.hpp +++ b/test/unit_tests/fixtures.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2020 Egor Tensin +// This file is part of the "PDB repository" project. +// For details, see https://github.com/egor-tensin/pdb-repo. +// Distributed under the MIT License. + #pragma once #include "paths.hpp" diff --git a/test/unit_tests/main.cpp b/test/unit_tests/main.cpp index 937bea3..cacb02f 100644 --- a/test/unit_tests/main.cpp +++ b/test/unit_tests/main.cpp @@ -1,2 +1,7 @@ +// Copyright (c) 2020 Egor Tensin +// This file is part of the "PDB repository" project. +// For details, see https://github.com/egor-tensin/pdb-repo. +// Distributed under the MIT License. + #define BOOST_TEST_MODULE pdb_repo tests #include diff --git a/test/unit_tests/paths.hpp b/test/unit_tests/paths.hpp index 561ca4d..3eb2fd6 100644 --- a/test/unit_tests/paths.hpp +++ b/test/unit_tests/paths.hpp @@ -1,3 +1,8 @@ +// Copyright (c) 2020 Egor Tensin +// This file is part of the "PDB repository" project. +// For details, see https://github.com/egor-tensin/pdb-repo. +// Distributed under the MIT License. + #pragma once #include -- cgit v1.2.3