diff options
Diffstat (limited to 'test/buildtool/execution_engine/executor')
-rw-r--r-- | test/buildtool/execution_engine/executor/executor.test.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/buildtool/execution_engine/executor/executor.test.cpp b/test/buildtool/execution_engine/executor/executor.test.cpp index 1f0312f7..685e4d47 100644 --- a/test/buildtool/execution_engine/executor/executor.test.cpp +++ b/test/buildtool/execution_engine/executor/executor.test.cpp @@ -70,7 +70,7 @@ class TestResponse : public IExecutionResponse { [[nodiscard]] auto ActionDigest() const noexcept -> std::string final { return {}; } - [[nodiscard]] auto Artifacts() const noexcept -> ArtifactInfos final { + [[nodiscard]] auto Artifacts() noexcept -> ArtifactInfos final { ArtifactInfos artifacts{}; artifacts.reserve(config_.execution.outputs.size()); @@ -89,6 +89,10 @@ class TestResponse : public IExecutionResponse { return artifacts; } + [[nodiscard]] auto ArtifactsWithDirSymlinks() noexcept + -> std::pair<ArtifactInfos, DirSymlinks> final { + return {}; + } private: TestApiConfig config_{}; |