How to run LIT test?

I am building Tensorflow from source. I know tensorflow have many LIT tests, and the rules are defined in glob_lit_tests.bzl. What is the right command to invoke these tests? For example, one of the lit test definition is:

glob_lit_tests(
data = [":test_utilities"],
driver = “@llvm-project//mlir:run_lit.sh”,
test_file_exts = [“mlir”],
)

How do I run these tests?

OK, I figured it out. The bazel command is
bazel test //my/path:my_mlir_file_name.mlir.test
To run one test or
bazel test //my/path/...
To run all tests.