summaryrefslogtreecommitdiff
path: root/t/README
diff options
context:
space:
mode:
authorLea Wiemann <lewiemann@gmail.com>2008-06-17 01:29:02 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-06-19 21:21:42 (GMT)
commit5e2c08c6f0209e94b36d0770abae1a2b571cb0f1 (patch)
tree1213ffc75f6238c7af76e39944de241a1beb66c8 /t/README
parente449f105805ffa49ccf7cf080db897ecf65a1a0f (diff)
downloadgit-5e2c08c6f0209e94b36d0770abae1a2b571cb0f1.zip
git-5e2c08c6f0209e94b36d0770abae1a2b571cb0f1.tar.gz
git-5e2c08c6f0209e94b36d0770abae1a2b571cb0f1.tar.bz2
test-lib.sh: add --long-tests option
Add a --long-tests option to test-lib.sh, which enables tests to selectively run more exhaustive (longer running, potentially brute-force) tests. Such exhaustive tests would only be useful if one works on the specific module that is being tested -- for a general "cd t/; make" to check whether everything is OK, such exhaustive tests shouldn't be run by default since the longer it takes to run the tests, the less often they are actually run. Signed-off-by: Lea Wiemann <LeWiemann@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/README')
-rw-r--r--t/README4
1 files changed, 4 insertions, 0 deletions
diff --git a/t/README b/t/README
index 70841a4..dc89263 100644
--- a/t/README
+++ b/t/README
@@ -54,6 +54,10 @@ You can pass --verbose (or -v), --debug (or -d), and --immediate
This causes the test to immediately exit upon the first
failed test.
+--long-tests::
+ This causes additional long-running tests to be run (where
+ available), for more exhaustive testing.
+
Naming Tests
------------