diff options
author | Sascha Roloff <sascha.roloff@huawei.com> | 2023-11-17 10:22:25 +0100 |
---|---|---|
committer | Sascha Roloff <sascha.roloff@huawei.com> | 2023-11-22 16:18:17 +0100 |
commit | 3b1095f7e3584f37c984a79ad7a2b94ebaa0700f (patch) | |
tree | 517f1113d4a19215b6403d38cc07a26a47c3090c /test/buildtool/execution_engine/executor | |
parent | 44a7c680289ba6812583746013f350d63942c894 (diff) | |
download | justbuild-3b1095f7e3584f37c984a79ad7a2b94ebaa0700f.tar.gz |
Implement blob splitting protocol on just client side
Diffstat (limited to 'test/buildtool/execution_engine/executor')
-rw-r--r-- | test/buildtool/execution_engine/executor/executor.test.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/buildtool/execution_engine/executor/executor.test.cpp b/test/buildtool/execution_engine/executor/executor.test.cpp index 5442aa21..0df8bd0f 100644 --- a/test/buildtool/execution_engine/executor/executor.test.cpp +++ b/test/buildtool/execution_engine/executor/executor.test.cpp @@ -157,7 +157,8 @@ class TestApi : public IExecutionApi { // irrelevant for testing though. return unused.empty(); // not needed by Executor } - auto RetrieveToMemory(Artifact::ObjectInfo const& /*artifact_info*/) + auto RetrieveToMemory( + Artifact::ObjectInfo const& /*artifact_info*/) noexcept -> std::optional<std::string> override { return std::nullopt; // not needed by Executor } |