BUILD 873 B

1234567891011121314151617181920212223242526272829303132333435
  1. # Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. # Exceptions. See /LICENSE for license information.
  3. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. load("//bazel/sh_run:rules.bzl", "glob_sh_run")
  5. load("//testing/lit_test:rules.bzl", "glob_lit_tests")
  6. glob_lit_tests(
  7. name = "all_lit_tests",
  8. data = [
  9. "//explorer",
  10. "//testing/lit_test:merge_output",
  11. "@llvm-project//llvm:FileCheck",
  12. "@llvm-project//llvm:not",
  13. ],
  14. driver = "lit.cfg.py",
  15. test_file_exts = ["carbon"],
  16. )
  17. glob_sh_run(
  18. args = ["$(location //explorer)"],
  19. data = ["//explorer"],
  20. file_exts = ["carbon"],
  21. )
  22. glob_sh_run(
  23. args = [
  24. "$(location //explorer)",
  25. "--parser_debug",
  26. "--trace_file=-",
  27. ],
  28. data = ["//explorer"],
  29. file_exts = ["carbon"],
  30. run_ext = "verbose",
  31. )