diff options
Diffstat (limited to 'test/buildtool/execution_engine/executor/executor.test.cpp')
-rw-r--r-- | test/buildtool/execution_engine/executor/executor.test.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/buildtool/execution_engine/executor/executor.test.cpp b/test/buildtool/execution_engine/executor/executor.test.cpp index 6f8bf6fd..a9f91ade 100644 --- a/test/buildtool/execution_engine/executor/executor.test.cpp +++ b/test/buildtool/execution_engine/executor/executor.test.cpp @@ -111,6 +111,14 @@ class TestResponse : public IExecutionResponse { [[nodiscard]] auto HasStdOut() const noexcept -> bool final { return true; } [[nodiscard]] auto StdErr() noexcept -> std::string final { return {}; } [[nodiscard]] auto StdOut() noexcept -> std::string final { return {}; } + [[nodiscard]] auto StdErrDigest() noexcept + -> std::optional<ArtifactDigest> final { + return std::nullopt; + } + [[nodiscard]] auto StdOutDigest() noexcept + -> std::optional<ArtifactDigest> final { + return std::nullopt; + } [[nodiscard]] auto ActionDigest() const noexcept -> std::string const& final { static const std::string kEmptyHash; |