From 26090ce503f40502a62d7ebabcb4ee060b28d05b Mon Sep 17 00:00:00 2001 From: Klaus Aehlig Date: Thu, 27 Jul 2023 13:59:11 +0200 Subject: Execution API: support fetching a single artifact to memory --- test/buildtool/execution_engine/executor/executor.test.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test/buildtool/execution_engine/executor/executor.test.cpp') 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 override { + return std::nullopt; // not needed by Executor + } auto Upload(BlobContainer const& blobs, bool /*unused*/) noexcept -> bool final { return std::all_of( -- cgit v1.2.3