diff options
author | Andrei Vagin <avagin@google.com> | 2020-06-04 17:16:57 -0700 |
---|---|---|
committer | Andrei Vagin <avagin@google.com> | 2020-06-04 18:23:45 -0700 |
commit | 9e66ac4c20dcfa2f4aaa4b149736f34f6b2bc451 (patch) | |
tree | 1ebc50dd17e4fef53bfc5538be778cccb5a11342 | |
parent | d3a8bffe04595910714ec67231585bc33dab2b5b (diff) |
test/syscall: run hostnet tests in separate network namespaces
A few tests use hard coded port numbers, so we need to guruantee that
these ports will not be used for somthing else.
-rw-r--r-- | test/runner/defs.bzl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/runner/defs.bzl b/test/runner/defs.bzl index 402ba4064..5a83f8060 100644 --- a/test/runner/defs.bzl +++ b/test/runner/defs.bzl @@ -93,6 +93,7 @@ def _syscall_test( # we figure out how to request ipv4 sockets on Guitar machines. if network == "host": tags.append("noguitar") + tags.append("block-network") # Disable off-host networking. tags.append("requires-net:loopback") |