1load("//tensorflow:tensorflow.bzl", "filegroup") 2load("//tensorflow/compiler/mlir:glob_lit_test.bzl", "glob_lit_tests") 3 4licenses(["notice"]) 5 6glob_lit_tests( 7 data = [":test_utilities"], 8 driver = "@llvm-project//mlir:run_lit.sh", 9 test_file_exts = [ 10 "pbtxt", 11 ], 12) 13 14# Bundle together all of the test utilities that are used by tests. 15filegroup( 16 name = "test_utilities", 17 testonly = True, 18 data = [ 19 "//tensorflow/compiler/mlir/tfjs:tf_tfjs_translate", 20 "@llvm-project//llvm:FileCheck", 21 ], 22) 23