From 5e3cc5a7a38e93159a81b940b19ced879a2d280c Mon Sep 17 00:00:00 2001 From: Paul Cristian Sarbu Date: Mon, 19 Jun 2023 12:42:21 +0200 Subject: Execution response: Add output symlink paths --- test/buildtool/execution_engine/executor/executor.test.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (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 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 final { + return {}; + } private: TestApiConfig config_{}; -- cgit v1.2.3