diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-07-27 13:59:11 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-07-27 16:51:17 +0200 |
commit | 26090ce503f40502a62d7ebabcb4ee060b28d05b (patch) | |
tree | a15036404215cf63c0b5202e15f1000e2b71f64a /test/buildtool/execution_engine/executor/executor.test.cpp | |
parent | 106ad30405914d20c05a32b32157f17da57c570e (diff) | |
download | justbuild-26090ce503f40502a62d7ebabcb4ee060b28d05b.tar.gz |
Execution API: support fetching a single artifact to memory
Diffstat (limited to 'test/buildtool/execution_engine/executor/executor.test.cpp')
-rw-r--r-- | test/buildtool/execution_engine/executor/executor.test.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/buildtool/execution_engine/executor/executor.test.cpp b/test/buildtool/execution_engine/executor/executor.test.cpp index 685e4d47..5442aa21 100644 --- a/test/buildtool/execution_engine/executor/executor.test.cpp +++ b/test/buildtool/execution_engine/executor/executor.test.cpp @@ -157,6 +157,10 @@ class TestApi : public IExecutionApi { // irrelevant for testing though. return unused.empty(); // not needed by Executor } + auto RetrieveToMemory(Artifact::ObjectInfo const& /*artifact_info*/) + -> std::optional<std::string> override { + return std::nullopt; // not needed by Executor + } auto Upload(BlobContainer const& blobs, bool /*unused*/) noexcept -> bool final { return std::all_of( |