diff options
Diffstat (limited to 'test/buildtool/execution_engine/traverser')
-rw-r--r-- | test/buildtool/execution_engine/traverser/TARGETS | 4 | ||||
-rw-r--r-- | test/buildtool/execution_engine/traverser/traverser.test.cpp | 18 |
2 files changed, 18 insertions, 4 deletions
diff --git a/test/buildtool/execution_engine/traverser/TARGETS b/test/buildtool/execution_engine/traverser/TARGETS index ba159245..161aacc6 100644 --- a/test/buildtool/execution_engine/traverser/TARGETS +++ b/test/buildtool/execution_engine/traverser/TARGETS @@ -4,9 +4,11 @@ , "srcs": ["traverser.test.cpp"] , "private-deps": [ ["@", "catch2", "", "catch2"] + , ["@", "gsl", "", "gsl"] + , ["@", "json", "", "json"] + , ["@", "src", "src/buildtool/common", "action_description"] , ["@", "src", "src/buildtool/common", "artifact_description"] , ["@", "src", "src/buildtool/common", "common"] - , ["@", "src", "src/buildtool/crypto", "hash_function"] , ["@", "src", "src/buildtool/execution_engine/dag", "dag"] , ["@", "src", "src/buildtool/execution_engine/traverser", "traverser"] , ["", "catch-main"] diff --git a/test/buildtool/execution_engine/traverser/traverser.test.cpp b/test/buildtool/execution_engine/traverser/traverser.test.cpp index 6bbafc03..2708a73e 100644 --- a/test/buildtool/execution_engine/traverser/traverser.test.cpp +++ b/test/buildtool/execution_engine/traverser/traverser.test.cpp @@ -15,16 +15,28 @@ #include "src/buildtool/execution_engine/traverser/traverser.hpp" #include <algorithm> +#include <atomic> +#include <filesystem> +#include <functional> +#include <iterator> +#include <map> #include <mutex> +#include <optional> #include <string> -#include <unordered_map> +#include <thread> #include <unordered_set> -#include <variant> +#include <utility> #include <vector> #include "catch2/catch_test_macros.hpp" +#include "catch2/matchers/catch_matchers_all.hpp" +#include "gsl/gsl" +#include "nlohmann/json.hpp" +#include "src/buildtool/common/action.hpp" +#include "src/buildtool/common/action_description.hpp" +#include "src/buildtool/common/artifact.hpp" #include "src/buildtool/common/artifact_description.hpp" -#include "src/buildtool/crypto/hash_function.hpp" +#include "src/buildtool/common/identifier.hpp" #include "src/buildtool/execution_engine/dag/dag.hpp" #include "test/utils/container_matchers.hpp" #include "test/utils/hermeticity/test_hash_function_type.hpp" |