From c2499c406d0727853ea0ddc5372a50be95de5515 Mon Sep 17 00:00:00 2001 From: Klaus Aehlig Date: Tue, 27 Feb 2018 05:47:21 -0800 Subject: Expose --output_user_base to the Bazel server process ...so that it can use that path to compute other directories in the output user base, in particular the default location for caches. The first cache we will add is the hash-index cache for downloads of external archives, but a spawn cache might be added later in the output user base as well. Change-Id: I24b1c33235c8f76ec008ecb1789163de2b2a45be PiperOrigin-RevId: 187164275 --- .../com/google/devtools/build/lib/runtime/CommandInterruptionTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/test/java/com/google/devtools/build/lib/runtime/CommandInterruptionTest.java') diff --git a/src/test/java/com/google/devtools/build/lib/runtime/CommandInterruptionTest.java b/src/test/java/com/google/devtools/build/lib/runtime/CommandInterruptionTest.java index adf8a56775..de38e15cec 100644 --- a/src/test/java/com/google/devtools/build/lib/runtime/CommandInterruptionTest.java +++ b/src/test/java/com/google/devtools/build/lib/runtime/CommandInterruptionTest.java @@ -348,7 +348,8 @@ public final class CommandInterruptionTest { isTestShuttingDown = new AtomicBoolean(false); String productName = TestConstants.PRODUCT_NAME; ServerDirectories serverDirectories = - new ServerDirectories(scratch.dir("install"), scratch.dir("output")); + new ServerDirectories( + scratch.dir("install"), scratch.dir("output"), scratch.dir("user_root")); BlazeRuntime runtime = new BlazeRuntime.Builder() .setFileSystem(scratch.getFileSystem()) -- cgit v1.2.3