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/end-to-end/just-mr | |
parent | 506ffd3bd96da9bac18f377822ca4f2954f75f71 (diff) | |
download | justbuild-9c3d4539b820b34ca112dedbaf2ed5262c003ace.tar.gz |
tests: Implement IWYU suggestions
Diffstat (limited to 'test/end-to-end/just-mr')
-rw-r--r-- | test/end-to-end/just-mr/create_test_archives.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/end-to-end/just-mr/create_test_archives.cpp b/test/end-to-end/just-mr/create_test_archives.cpp index c860c872..35f5a906 100644 --- a/test/end-to-end/just-mr/create_test_archives.cpp +++ b/test/end-to-end/just-mr/create_test_archives.cpp @@ -13,16 +13,21 @@ // limitations under the License. #include <cstdlib> +#include <filesystem> +#include <functional> +#include <memory> #include <optional> #include <string> #include <unordered_map> #include <utility> // std::pair +#include <vector> #include "src/buildtool/file_system/file_system_manager.hpp" #include "src/buildtool/file_system/object_type.hpp" #include "src/buildtool/logging/log_config.hpp" #include "src/buildtool/logging/log_level.hpp" #include "src/buildtool/logging/log_sink_cmdline.hpp" +#include "src/buildtool/logging/logger.hpp" #include "src/utils/archive/archive_ops.hpp" #include "src/utils/cpp/tmp_dir.hpp" |