aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/com/google/devtools/build
diff options
context:
space:
mode:
authorGravatar Yue Gan <yueg@google.com>2016-03-16 18:33:11 +0000
committerGravatar Lukacs Berki <lberki@google.com>2016-03-17 10:07:43 +0000
commit5b1fce59a09fe58548661e5247db455035827830 (patch)
tree1ac7f5609af808c5c309f0a4b8d3551d417a3484 /src/test/java/com/google/devtools/build
parentc96ed864b13cf981a8be33e39fd6ed71decce3c0 (diff)
sandbox:
- add flag --sandbox_add_path, which takes a list of additional paths as argument and mount these paths to sandbox. Fixes #884. - mount target of /etc/resolv.conf if it is a symlink. Fixes #738. RELNOTES: - add flag --sandbox_add_path, which takes a list of additional paths as argument and mount these paths to sandbox. - mount target of /etc/resolv.conf if it is a symlink. -- MOS_MIGRATED_REVID=117364211
Diffstat (limited to 'src/test/java/com/google/devtools/build')
-rw-r--r--src/test/java/com/google/devtools/build/lib/sandbox/LinuxSandboxedStrategyTestCase.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/sandbox/LinuxSandboxedStrategyTestCase.java b/src/test/java/com/google/devtools/build/lib/sandbox/LinuxSandboxedStrategyTestCase.java
index 8f7b9a7ef9..d64758494c 100644
--- a/src/test/java/com/google/devtools/build/lib/sandbox/LinuxSandboxedStrategyTestCase.java
+++ b/src/test/java/com/google/devtools/build/lib/sandbox/LinuxSandboxedStrategyTestCase.java
@@ -105,7 +105,8 @@ public class LinuxSandboxedStrategyTestCase {
blazeDirs,
MoreExecutors.newDirectExecutorService(),
true,
- false)),
+ false,
+ ImmutableList.<String>of())),
ImmutableList.<ActionContextProvider>of());
}