diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-02-15 23:55:44 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-02-15 23:55:44 +0100 |
commit | bfc817d8a2b676fa36aff80fe57b000ee17d4d2b (patch) | |
tree | 5abfaa94994e6ec68e3082a6ea2f4254f843ee9f /t/test-lib.sh | |
parent | Merge branch 'po/object-id' (diff) | |
parent | wildmatch test: mark test as EXPENSIVE_ON_WINDOWS (diff) | |
download | git-bfc817d8a2b676fa36aff80fe57b000ee17d4d2b.tar.xz git-bfc817d8a2b676fa36aff80fe57b000ee17d4d2b.zip |
Merge branch 'ab/wildmatch-tests'
More tests for wildmatch functions.
* ab/wildmatch-tests:
wildmatch test: mark test as EXPENSIVE_ON_WINDOWS
test-lib: add an EXPENSIVE_ON_WINDOWS prerequisite
wildmatch test: create & test files on disk in addition to in-memory
wildmatch test: perform all tests under all wildmatch() modes
wildmatch test: use test_must_fail, not ! for test-wildmatch
wildmatch test: remove dead fnmatch() test code
wildmatch test: use a paranoia pattern from nul_match()
wildmatch test: don't try to vertically align our output
wildmatch test: use more standard shell style
wildmatch test: indent with tabs, not spaces
Diffstat (limited to 't/test-lib.sh')
-rw-r--r-- | t/test-lib.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh index 9af19055b3..452dec10e5 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -1132,6 +1132,10 @@ test_lazy_prereq EXPENSIVE ' test -n "$GIT_TEST_LONG" ' +test_lazy_prereq EXPENSIVE_ON_WINDOWS ' + test_have_prereq EXPENSIVE || test_have_prereq !MINGW,!CYGWIN +' + test_lazy_prereq USR_BIN_TIME ' test -x /usr/bin/time ' |