gvisor.dev/gvisor@v0.0.0-20240520182842-f9d4d51c7e0f/test/fsstress/BUILD (about) 1 load("//tools:defs.bzl", "go_library", "go_test") 2 3 package( 4 default_applicable_licenses = ["//:license"], 5 licenses = ["notice"], 6 ) 7 8 go_test( 9 name = "fsstress_test", 10 size = "large", 11 srcs = [ 12 "fsstress_test.go", 13 ], 14 library = ":fsstress", 15 tags = [ 16 # Requires docker and runsc to be configured before the test runs. 17 "manual", 18 "local", 19 ], 20 deps = [ 21 "//pkg/test/dockerutil", 22 "//pkg/test/testutil", 23 "@com_github_docker_docker//api/types/mount:go_default_library", 24 ], 25 ) 26 27 go_library( 28 name = "fsstress", 29 srcs = ["fsstress.go"], 30 )