Geoff Romer 4 лет назад
Родитель
Сommit
46775ac2b2
2 измененных файлов с 4 добавлено и 3 удалено
  1. 1 0
      bazel/testing/lit_test.py
  2. 3 3
      executable_semantics/README.md

+ 1 - 0
bazel/testing/lit_test.py

@@ -80,6 +80,7 @@ def main():
         os.path.join(symlink_dir, "lit"),
         "--path=%s" % symlink_dir,
         test_dir,
+        "-sv",
     ]
 
     # Run lit.

+ 3 - 3
executable_semantics/README.md

@@ -259,8 +259,8 @@ To explain this boilerplate:
 Useful commands are:
 
 -   `./update_checks.py` -- Updates expected output.
--   `bazel test :executable_semantics_lit_test --test_output=errors --test_arg=-v`
-    -- Runs tests and prints verbose output.
--   `bazel test :executable_semantics_lit_test --test_output=errors --test_arg=-v --test_arg=--filter=basic_syntax/.*`
+-   `bazel test :executable_semantics_lit_test --test_output=errors` -- Runs
+    tests and prints any errors.
+-   `bazel test :executable_semantics_lit_test --test_output=errors --test_arg=--filter=basic_syntax/.*`
     -- Only runs tests in the `basic_syntax` directory; `--filter` is a regular
     expression.