diff options
author | Jamie Liu <jamieliu@google.com> | 2020-11-10 17:37:39 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-11-10 17:39:31 -0800 |
commit | 7f2183df9c529790cd99d31a185ae4ddd5f355c6 (patch) | |
tree | 53bef555e6a4d655af49d07919bffe71e0c564c7 /test | |
parent | a0e2966df502360067b45c24c90951efaf4a942c (diff) |
Internal change
PiperOrigin-RevId: 341732791
Diffstat (limited to 'test')
-rw-r--r-- | test/runner/defs.bzl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/runner/defs.bzl b/test/runner/defs.bzl index 4992147d4..7618f6a21 100644 --- a/test/runner/defs.bzl +++ b/test/runner/defs.bzl @@ -1,6 +1,6 @@ """Defines a rule for syscall test targets.""" -load("//tools:defs.bzl", "default_platform", "loopback", "platforms") +load("//tools:defs.bzl", "default_platform", "platforms") def _runner_test_impl(ctx): # Generate a runner binary. @@ -100,6 +100,7 @@ def _syscall_test( # Disable off-host networking. tags.append("requires-net:loopback") + tags.append("requires-net:ipv4") tags.append("block-network") # gotsan makes sense only if tests are running in gVisor. @@ -125,7 +126,6 @@ def _syscall_test( name = name, test = test, runner_args = runner_args, - data = [loopback], size = size, tags = tags, shard_count = shard_count, |