github.com/SagerNet/gvisor@v0.0.0-20210707092255-7731c139d75c/test/packetdrill/BUILD (about)

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