summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/buildtool/execution_engine/executor/executor.test.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/test/buildtool/execution_engine/executor/executor.test.cpp b/test/buildtool/execution_engine/executor/executor.test.cpp
index c60326c1..0b4561e0 100644
--- a/test/buildtool/execution_engine/executor/executor.test.cpp
+++ b/test/buildtool/execution_engine/executor/executor.test.cpp
@@ -138,9 +138,12 @@ class TestApi : public IExecutionApi {
-> IExecutionAction::Ptr final {
return IExecutionAction::Ptr{new TestAction(config_)};
}
- auto RetrieveToPaths(std::vector<Artifact::ObjectInfo> const& /*unused*/,
- std::vector<std::filesystem::path> const& /*unused*/,
- IExecutionApi* /* unused */) noexcept -> bool final {
+ auto RetrieveToPaths(
+ std::vector<Artifact::ObjectInfo> const& /*unused*/,
+ std::vector<std::filesystem::path> const& /*unused*/,
+ std::optional<
+ gsl::not_null<IExecutionApi*>> const& /* unused */) noexcept
+ -> bool final {
return false; // not needed by Executor
}
auto RetrieveToFds(std::vector<Artifact::ObjectInfo> const& /*unused*/,