summaryrefslogtreecommitdiffhomepage
path: root/test/packetimpact/runner/defs.bzl
diff options
context:
space:
mode:
authorZeling Feng <zeling@google.com>2021-02-25 14:58:37 -0800
committergVisor bot <gvisor-bot@google.com>2021-02-25 15:01:14 -0800
commit67761345c8f2d01f41eb8bbeb0dc8f5d94b4e576 (patch)
tree445e2c35ac05ca8e493515f1e57bb975743acdfa /test/packetimpact/runner/defs.bzl
parent38c42bbf4ad2200f0ec72e51d1cfbbd83d782a63 (diff)
Move SetNonblocking into posix_server
- open flags can be different on different OSs, by putting SetNonblocking into the posix_server rather than the testbench, we can always get the right value for O_NONBLOCK - merged the tcp_queue_{send,receive}_in_syn_sent into a single file PiperOrigin-RevId: 359620630
Diffstat (limited to 'test/packetimpact/runner/defs.bzl')
-rw-r--r--test/packetimpact/runner/defs.bzl15
1 files changed, 8 insertions, 7 deletions
diff --git a/test/packetimpact/runner/defs.bzl b/test/packetimpact/runner/defs.bzl
index 52ed5ae39..8ce5edf2b 100644
--- a/test/packetimpact/runner/defs.bzl
+++ b/test/packetimpact/runner/defs.bzl
@@ -128,14 +128,14 @@ def packetimpact_go_test(name, expect_native_failure = False, expect_netstack_fa
packetimpact_native_test(
name = name,
expect_failure = expect_native_failure,
- testbench_binary = testbench_binary,
num_duts = num_duts,
+ testbench_binary = testbench_binary,
)
packetimpact_netstack_test(
name = name,
expect_failure = expect_netstack_failure,
- testbench_binary = testbench_binary,
num_duts = num_duts,
+ testbench_binary = testbench_binary,
)
def packetimpact_testbench(name, size = "small", pure = True, **kwargs):
@@ -161,7 +161,11 @@ def packetimpact_testbench(name, size = "small", pure = True, **kwargs):
PacketimpactTestInfo = provider(
doc = "Provide information for packetimpact tests",
- fields = ["name", "expect_netstack_failure", "num_duts"],
+ fields = [
+ "name",
+ "expect_netstack_failure",
+ "num_duts",
+ ],
)
ALL_TESTS = [
@@ -219,7 +223,7 @@ ALL_TESTS = [
name = "tcp_zero_receive_window",
),
PacketimpactTestInfo(
- name = "tcp_queue_receive_in_syn_sent",
+ name = "tcp_queue_send_recv_in_syn_sent",
),
PacketimpactTestInfo(
name = "tcp_synsent_reset",
@@ -242,9 +246,6 @@ ALL_TESTS = [
expect_netstack_failure = True,
),
PacketimpactTestInfo(
- name = "tcp_queue_send_in_syn_sent",
- ),
- PacketimpactTestInfo(
name = "icmpv6_param_problem",
),
PacketimpactTestInfo(