summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Dan Liew <daniel.liew@imperial.ac.uk>2014-05-28 16:56:27 +0100
committerGravatar Dan Liew <daniel.liew@imperial.ac.uk>2014-05-28 16:56:27 +0100
commit8c74b9664c48b18955ffe412013c2724dc95db2f (patch)
tree479faba3fc87d76a9f0e27ed33bf67f98aeba3f4
parent1664e95a6c6a83c9eacb1d5393cb19f0d9e09e1b (diff)
Document lit's ``-s`` option.
-rw-r--r--Test/README.md16
1 files changed, 15 insertions, 1 deletions
diff --git a/Test/README.md b/Test/README.md
index 136881a5..05a0f521 100644
--- a/Test/README.md
+++ b/Test/README.md
@@ -76,7 +76,15 @@ $ cd Test
$ lit test0/ livevars/bla1.bpl aitest0/constants.bpl
```
-Note replace ``/`` with ``\`` on Windows (tab completition is your friend)
+Note replace ``/`` with ``\`` on Windows (tab completition is your friend).
+
+If you would prefer to see less information when running tests you can use the
+``-s`` flag to show progress information and a summary when tests finish.
+
+```
+$ cd Test
+$ lit -s .
+```
To pass additional flags to Boogie when running tests run the following command
where ``-someParamter`` is a paramter Boogie supports.
@@ -86,6 +94,12 @@ $ cd Test
$ lit --param boogie_params='-someParameter' .
```
+For more ``lit`` options run
+
+```
+$ lit --help
+```
+
Debugging failing tests
-----------------------