summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorRamsay Jones <ramsay@ramsay1.demon.co.uk>2014-05-20 23:33:46 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-06-06 20:48:00 (GMT)
commit7e28c16fdbdf3dc8a4e2a588a008e171982ec069 (patch)
tree5356c9ca795ba0d378cd4e3a4cb370044df48f82 /t
parent0445e6f0a1223b5d40542627607207a87a416b5b (diff)
downloadgit-7e28c16fdbdf3dc8a4e2a588a008e171982ec069.zip
git-7e28c16fdbdf3dc8a4e2a588a008e171982ec069.tar.gz
git-7e28c16fdbdf3dc8a4e2a588a008e171982ec069.tar.bz2
t0000-*.sh: fix the GIT_SKIP_TESTS sub-tests
Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-xt/t0000-basic.sh108
1 files changed, 57 insertions, 51 deletions
diff --git a/t/t0000-basic.sh b/t/t0000-basic.sh
index 8345c8a..f10ba4a 100755
--- a/t/t0000-basic.sh
+++ b/t/t0000-basic.sh
@@ -296,66 +296,72 @@ test_expect_success 'test --verbose-only' '
'
test_expect_success 'GIT_SKIP_TESTS' "
- GIT_SKIP_TESTS='git.2' \
+ (
+ GIT_SKIP_TESTS='git.2' && export GIT_SKIP_TESTS &&
run_sub_test_lib_test git-skip-tests-basic \
- 'GIT_SKIP_TESTS' <<-\\EOF &&
- for i in 1 2 3
- do
- test_expect_success \"passing test #\$i\" 'true'
- done
- test_done
- EOF
- check_sub_test_lib_test git-skip-tests-basic <<-\\EOF
- > ok 1 - passing test #1
- > ok 2 # skip passing test #2 (GIT_SKIP_TESTS)
- > ok 3 - passing test #3
- > # passed all 3 test(s)
- > 1..3
- EOF
+ 'GIT_SKIP_TESTS' <<-\\EOF &&
+ for i in 1 2 3
+ do
+ test_expect_success \"passing test #\$i\" 'true'
+ done
+ test_done
+ EOF
+ check_sub_test_lib_test git-skip-tests-basic <<-\\EOF
+ > ok 1 - passing test #1
+ > ok 2 # skip passing test #2 (GIT_SKIP_TESTS)
+ > ok 3 - passing test #3
+ > # passed all 3 test(s)
+ > 1..3
+ EOF
+ )
"
test_expect_success 'GIT_SKIP_TESTS several tests' "
- GIT_SKIP_TESTS='git.2 git.5' \
+ (
+ GIT_SKIP_TESTS='git.2 git.5' && export GIT_SKIP_TESTS &&
run_sub_test_lib_test git-skip-tests-several \
- 'GIT_SKIP_TESTS several tests' <<-\\EOF &&
- for i in 1 2 3 4 5 6
- do
- test_expect_success \"passing test #\$i\" 'true'
- done
- test_done
- EOF
- check_sub_test_lib_test git-skip-tests-several <<-\\EOF
- > ok 1 - passing test #1
- > ok 2 # skip passing test #2 (GIT_SKIP_TESTS)
- > ok 3 - passing test #3
- > ok 4 - passing test #4
- > ok 5 # skip passing test #5 (GIT_SKIP_TESTS)
- > ok 6 - passing test #6
- > # passed all 6 test(s)
- > 1..6
- EOF
+ 'GIT_SKIP_TESTS several tests' <<-\\EOF &&
+ for i in 1 2 3 4 5 6
+ do
+ test_expect_success \"passing test #\$i\" 'true'
+ done
+ test_done
+ EOF
+ check_sub_test_lib_test git-skip-tests-several <<-\\EOF
+ > ok 1 - passing test #1
+ > ok 2 # skip passing test #2 (GIT_SKIP_TESTS)
+ > ok 3 - passing test #3
+ > ok 4 - passing test #4
+ > ok 5 # skip passing test #5 (GIT_SKIP_TESTS)
+ > ok 6 - passing test #6
+ > # passed all 6 test(s)
+ > 1..6
+ EOF
+ )
"
test_expect_success 'GIT_SKIP_TESTS sh pattern' "
- GIT_SKIP_TESTS='git.[2-5]' \
+ (
+ GIT_SKIP_TESTS='git.[2-5]' && export GIT_SKIP_TESTS &&
run_sub_test_lib_test git-skip-tests-sh-pattern \
- 'GIT_SKIP_TESTS sh pattern' <<-\\EOF &&
- for i in 1 2 3 4 5 6
- do
- test_expect_success \"passing test #\$i\" 'true'
- done
- test_done
- EOF
- check_sub_test_lib_test git-skip-tests-sh-pattern <<-\\EOF
- > ok 1 - passing test #1
- > ok 2 # skip passing test #2 (GIT_SKIP_TESTS)
- > ok 3 # skip passing test #3 (GIT_SKIP_TESTS)
- > ok 4 # skip passing test #4 (GIT_SKIP_TESTS)
- > ok 5 # skip passing test #5 (GIT_SKIP_TESTS)
- > ok 6 - passing test #6
- > # passed all 6 test(s)
- > 1..6
- EOF
+ 'GIT_SKIP_TESTS sh pattern' <<-\\EOF &&
+ for i in 1 2 3 4 5 6
+ do
+ test_expect_success \"passing test #\$i\" 'true'
+ done
+ test_done
+ EOF
+ check_sub_test_lib_test git-skip-tests-sh-pattern <<-\\EOF
+ > ok 1 - passing test #1
+ > ok 2 # skip passing test #2 (GIT_SKIP_TESTS)
+ > ok 3 # skip passing test #3 (GIT_SKIP_TESTS)
+ > ok 4 # skip passing test #4 (GIT_SKIP_TESTS)
+ > ok 5 # skip passing test #5 (GIT_SKIP_TESTS)
+ > ok 6 - passing test #6
+ > # passed all 6 test(s)
+ > 1..6
+ EOF
+ )
"
test_expect_success '--run basic' "