diff options
author | Maksim Denisov <denisov.maksim@huawei.com> | 2024-11-14 09:44:47 +0100 |
---|---|---|
committer | Maksim Denisov <denisov.maksim@huawei.com> | 2024-11-14 14:23:06 +0100 |
commit | 9c3d4539b820b34ca112dedbaf2ed5262c003ace (patch) | |
tree | f304adf8c9584bf434224620b91860502eb87e15 /test/buildtool/execution_engine/executor/executor.test.cpp | |
parent | 506ffd3bd96da9bac18f377822ca4f2954f75f71 (diff) | |
download | justbuild-9c3d4539b820b34ca112dedbaf2ed5262c003ace.tar.gz |
tests: Implement IWYU suggestions
Diffstat (limited to 'test/buildtool/execution_engine/executor/executor.test.cpp')
-rw-r--r-- | test/buildtool/execution_engine/executor/executor.test.cpp | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/test/buildtool/execution_engine/executor/executor.test.cpp b/test/buildtool/execution_engine/executor/executor.test.cpp index 59b06648..56c02be0 100644 --- a/test/buildtool/execution_engine/executor/executor.test.cpp +++ b/test/buildtool/execution_engine/executor/executor.test.cpp @@ -15,31 +15,49 @@ #include "src/buildtool/execution_engine/executor/executor.hpp" #include <algorithm> +#include <chrono> +#include <exception> #include <filesystem> +#include <functional> #include <map> #include <memory> #include <optional> #include <string> #include <unordered_map> #include <utility> +#include <variant> #include <vector> #include "catch2/catch_test_macros.hpp" #include "gsl/gsl" #include "src/buildtool/auth/authentication.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/common/artifact_digest.hpp" #include "src/buildtool/common/artifact_digest_factory.hpp" +#include "src/buildtool/common/identifier.hpp" +#include "src/buildtool/common/remote/remote_common.hpp" +#include "src/buildtool/common/remote/retry_config.hpp" #include "src/buildtool/common/repository_config.hpp" #include "src/buildtool/common/statistics.hpp" #include "src/buildtool/crypto/hash_function.hpp" +#include "src/buildtool/execution_api/common/artifact_blob_container.hpp" +#include "src/buildtool/execution_api/common/execution_action.hpp" #include "src/buildtool/execution_api/common/execution_api.hpp" +#include "src/buildtool/execution_api/common/execution_response.hpp" #include "src/buildtool/execution_api/remote/config.hpp" #include "src/buildtool/execution_api/remote/context.hpp" +#include "src/buildtool/execution_engine/dag/dag.hpp" #include "src/buildtool/execution_engine/executor/context.hpp" +#include "src/buildtool/file_system/file_root.hpp" #include "src/buildtool/file_system/file_system_manager.hpp" +#include "src/buildtool/file_system/object_type.hpp" +#include "src/buildtool/logging/logger.hpp" #include "src/buildtool/progress_reporting/progress.hpp" #include "src/utils/cpp/expected.hpp" +#include "src/utils/cpp/transformed_range.hpp" #include "test/utils/executor/test_api_bundle.hpp" #include "test/utils/hermeticity/test_hash_function_type.hpp" @@ -71,11 +89,6 @@ static auto NamedDigest(std::string const& str) -> ArtifactDigest { str); } -// forward declarations -class TestApi; -class TestAction; -class TestResponse; - /// \brief Mockup Response, stores only config and action result class TestResponse : public IExecutionResponse { public: |