summaryrefslogtreecommitdiff
path: root/test/buildtool/execution_engine
diff options
context:
space:
mode:
authorKlaus Aehlig <klaus.aehlig@huawei.com>2023-03-22 14:58:49 +0100
committerKlaus Aehlig <klaus.aehlig@huawei.com>2023-03-23 16:00:15 +0100
commitcf5fe9c264d0c7199b9ca13362913916ba689c6f (patch)
treea925629ba3978b20f766c701faa4e951c3745c8e /test/buildtool/execution_engine
parent27a7f0f98986abc54cd52b17974743287d6eaa79 (diff)
downloadjustbuild-cf5fe9c264d0c7199b9ca13362913916ba689c6f.tar.gz
execution api: support retrieving from more than one API
Diffstat (limited to 'test/buildtool/execution_engine')
-rw-r--r--[-rwxr-xr-x]test/buildtool/execution_engine/executor/executor.test.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/buildtool/execution_engine/executor/executor.test.cpp b/test/buildtool/execution_engine/executor/executor.test.cpp
index e4cdb3a1..8e187115 100755..100644
--- a/test/buildtool/execution_engine/executor/executor.test.cpp
+++ b/test/buildtool/execution_engine/executor/executor.test.cpp
@@ -133,10 +133,9 @@ 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*/) noexcept
- -> bool final {
+ auto RetrieveToPaths(std::vector<Artifact::ObjectInfo> const& /*unused*/,
+ std::vector<std::filesystem::path> const& /*unused*/,
+ IExecutionApi* /* unused */) noexcept -> bool final {
return false; // not needed by Executor
}
auto RetrieveToFds(std::vector<Artifact::ObjectInfo> const& /*unused*/,