gvisor.dev/gvisor@v0.0.0-20240520182842-f9d4d51c7e0f/test/packetdrill/BUILD (about) 1 load("//test/packetdrill:defs.bzl", "packetdrill_test") 2 load("//tools:defs.bzl", "bzl_library") 3 4 package( 5 default_applicable_licenses = ["//:license"], 6 licenses = ["notice"], 7 ) 8 9 packetdrill_test( 10 name = "packetdrill_sanity_test", 11 scripts = ["sanity_test.pkt"], 12 ) 13 14 packetdrill_test( 15 name = "accept_ack_drop_test", 16 scripts = ["accept_ack_drop.pkt"], 17 ) 18 19 packetdrill_test( 20 name = "fin_wait2_timeout_test", 21 scripts = ["fin_wait2_timeout.pkt"], 22 ) 23 24 packetdrill_test( 25 name = "listen_close_before_handshake_complete_test", 26 scripts = ["listen_close_before_handshake_complete.pkt"], 27 ) 28 29 packetdrill_test( 30 name = "no_rst_to_rst_test", 31 scripts = ["no_rst_to_rst.pkt"], 32 ) 33 34 packetdrill_test( 35 name = "tcp_defer_accept_test", 36 scripts = ["tcp_defer_accept.pkt"], 37 ) 38 39 packetdrill_test( 40 name = "tcp_defer_accept_timeout_test", 41 scripts = ["tcp_defer_accept_timeout.pkt"], 42 ) 43 44 test_suite( 45 name = "all_tests", 46 tags = [ 47 "local", 48 "manual", 49 "packetdrill", 50 ], 51 tests = existing_rules(), 52 ) 53 54 bzl_library( 55 name = "defs_bzl", 56 srcs = ["defs.bzl"], 57 visibility = ["//visibility:private"], 58 )