summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorIlya Bobyr <ilya.bobyr@gmail.com>2014-04-30 09:50:42 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-06-06 20:47:54 (GMT)
commit5e3b4fce4293d89ea79433527e6d55f4bcd42bbd (patch)
tree6486225ffe7478cd30bbfa61f1868b8d8d30a166 /t
parent779792a5f24bb4e8049c4f88ad752e70d4a8a080 (diff)
downloadgit-5e3b4fce4293d89ea79433527e6d55f4bcd42bbd.zip
git-5e3b4fce4293d89ea79433527e6d55f4bcd42bbd.tar.gz
git-5e3b4fce4293d89ea79433527e6d55f4bcd42bbd.tar.bz2
test-lib: document short options in t/README
Most arguments that could be provided to a test have short forms. Unless documented, the only way to learn them is to read the code. Signed-off-by: Ilya Bobyr <ilya.bobyr@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rw-r--r--t/README4
1 files changed, 4 insertions, 0 deletions
diff --git a/t/README b/t/README
index caeeb9d..eaf6ecd 100644
--- a/t/README
+++ b/t/README
@@ -71,6 +71,7 @@ You can pass --verbose (or -v), --debug (or -d), and --immediate
(or -i) command line argument to the test, or by setting GIT_TEST_OPTS
appropriately before running "make".
+-v::
--verbose::
This makes the test more verbose. Specifically, the
command being run and their output if any are also
@@ -81,6 +82,7 @@ appropriately before running "make".
numbers matching <pattern>. The number matched against is
simply the running count of the test within the file.
+-d::
--debug::
This may help the person who is developing a new test.
It causes the command defined with test_debug to run.
@@ -89,6 +91,7 @@ appropriately before running "make".
failed tests so that you can inspect its contents after
the test finished.
+-i::
--immediate::
This causes the test to immediately exit upon the first
failed test. Cleanup commands requested with
@@ -96,6 +99,7 @@ appropriately before running "make".
in order to keep the state for inspection by the tester
to diagnose the bug.
+-l::
--long-tests::
This causes additional long-running tests to be run (where
available), for more exhaustive testing.