kythe.io@v0.0.68-0.20240422202219-7225dbc01741/kythe/cxx/verifier/testdata/BUILD (about) 1 package( 2 default_visibility = ["//kythe:default_visibility"], 3 features = ["layering_check"], 4 ) 5 6 sh_test( 7 name = "basic", 8 size = "small", 9 srcs = [ 10 "test_verifier_cmd.sh", 11 ], 12 data = [ 13 "//kythe/cxx/verifier", 14 ], 15 ) 16 17 sh_test( 18 name = "regex", 19 size = "small", 20 srcs = [ 21 "test_verifier_regex.sh", 22 ], 23 data = [ 24 "regex_expected_error.txt", 25 "regex_input.txt", 26 "//kythe/cxx/verifier", 27 ], 28 ) 29 30 sh_test( 31 name = "singleton", 32 size = "small", 33 srcs = [ 34 "test_singleton.sh", 35 ], 36 args = [ 37 "singleton_input.txt", 38 "singleton_expected_error.txt", 39 ], 40 data = [ 41 "singleton_expected_error.txt", 42 "singleton_input.txt", 43 "//kythe/cxx/verifier", 44 ], 45 ) 46 47 sh_test( 48 name = "singleton_inspect", 49 size = "small", 50 srcs = [ 51 "test_singleton.sh", 52 ], 53 args = [ 54 "singleton_inspect_input.txt", 55 "singleton_inspect_expected_error.txt", 56 ], 57 data = [ 58 "singleton_inspect_expected_error.txt", 59 "singleton_inspect_input.txt", 60 "//kythe/cxx/verifier", 61 ], 62 ) 63 64 sh_test( 65 name = "singleton_inspect_fs", 66 size = "small", 67 srcs = [ 68 "test_singleton_fs.sh", 69 ], 70 args = [ 71 "singleton_inspect_input_fs.txt", 72 "singleton_inspect_expected_error_fs.txt", 73 ], 74 data = [ 75 "singleton_inspect_expected_error_fs.txt", 76 "singleton_inspect_input_fs.txt", 77 "//kythe/cxx/verifier", 78 ], 79 ) 80 81 sh_test( 82 name = "outputs", 83 size = "small", 84 srcs = [ 85 "test_outputs.sh", 86 ], 87 data = [ 88 "just_file_node.bin", 89 "just_file_node.dot", 90 "//kythe/cxx/verifier", 91 ], 92 )