summaryrefslogtreecommitdiff
path: root/test/buildtool/execution_engine/executor/executor.test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/buildtool/execution_engine/executor/executor.test.cpp')
-rw-r--r--test/buildtool/execution_engine/executor/executor.test.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/buildtool/execution_engine/executor/executor.test.cpp b/test/buildtool/execution_engine/executor/executor.test.cpp
index 93dd10b6..cba6c977 100644
--- a/test/buildtool/execution_engine/executor/executor.test.cpp
+++ b/test/buildtool/execution_engine/executor/executor.test.cpp
@@ -139,6 +139,10 @@ class TestResponse : public IExecutionResponse {
static const DirSymlinks kEmptySymlinks{};
return gsl::not_null<DirSymlinks const*>(&kEmptySymlinks);
}
+ [[nodiscard]] auto HasUpwardsSymlinks() noexcept
+ -> expected<bool, std::string> final {
+ return false;
+ }
private:
TestApiConfig config_{};