From 460843f02bb73baf57d1e3761e2987a45bbd87b9 Mon Sep 17 00:00:00 2001 From: Jakob Buchgraber Date: Mon, 15 Apr 2019 09:08:33 -0700 Subject: [PATCH] enable some tests to run remotely these tests were tagged "local" in order to not use a sandbox. The "local" tag unfortunately also applies to remote execution. Mark them "no-sandbox" so that they can run with remote execution. Progress towards #8033 Closes #8048. PiperOrigin-RevId: 243626963 --- src/test/shell/bazel/BUILD | 8 ++++---- src/test/shell/integration/BUILD | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/test/shell/bazel/BUILD b/src/test/shell/bazel/BUILD index de4d62807de969..ef03d9ddc7a26b 100644 --- a/src/test/shell/bazel/BUILD +++ b/src/test/shell/bazel/BUILD @@ -201,7 +201,7 @@ sh_test( data = [":test-deps"], shard_count = 3, tags = [ - "local", + "no-sandbox", "no_windows", ], ) @@ -267,7 +267,7 @@ sh_test( srcs = ["bazel_localtest_test.sh"], data = [":test-deps"], tags = [ - "local", + "no-sandbox", "no_windows", ], ) @@ -586,7 +586,7 @@ sh_test( "//src/test/shell:sandboxing_test_utils.sh", ], tags = [ - "local", + "no-sandbox", "no_windows", ], ) @@ -599,7 +599,7 @@ sh_test( "//src/test/shell:sandboxing_test_utils.sh", ], tags = [ - "local", + "no-sandbox", "no_windows", ], ) diff --git a/src/test/shell/integration/BUILD b/src/test/shell/integration/BUILD index b5233b0b364d0e..36e1a5799840c5 100644 --- a/src/test/shell/integration/BUILD +++ b/src/test/shell/integration/BUILD @@ -64,7 +64,7 @@ sh_test( "@bazel_tools//tools/bash/runfiles", ], tags = [ - "local", + "no-sandbox", ], ) @@ -296,7 +296,7 @@ sh_test( # This test doesn't work with the sandbox on, see the source file # for details. tags = [ - "local", + "no-sandbox", "no_windows", ], )