summaryrefslogtreecommitdiff
path: root/t/test-lib-functions.sh
diff options
context:
space:
mode:
authorThomas Rast <trast@inf.ethz.ch>2013-06-18 12:25:59 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-06-18 18:15:14 (GMT)
commitae75342cff145a326b2213128cca453023521400 (patch)
tree4235f2eb876f45b0d4af9a1c0af8e8171d717018 /t/test-lib-functions.sh
parente6a6ddc93a89862319c7876536d79d6d3538de5a (diff)
downloadgit-ae75342cff145a326b2213128cca453023521400.zip
git-ae75342cff145a326b2213128cca453023521400.tar.gz
git-ae75342cff145a326b2213128cca453023521400.tar.bz2
test-lib: rearrange start/end of test_expect_* and test_skip
This moves * the early setup part from test_skip to a new function test_start_ * the final common parts of test_expect_* to a new function test_finish_ to make the next commit more obvious. Signed-off-by: Thomas Rast <trast@inf.ethz.ch> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/test-lib-functions.sh')
-rw-r--r--t/test-lib-functions.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/t/test-lib-functions.sh b/t/test-lib-functions.sh
index 5251009..ad6d60a 100644
--- a/t/test-lib-functions.sh
+++ b/t/test-lib-functions.sh
@@ -343,6 +343,7 @@ test_declared_prereq () {
}
test_expect_failure () {
+ test_start_
test "$#" = 3 && { test_prereq=$1; shift; } || test_prereq=
test "$#" = 2 ||
error "bug in the test script: not 2 or 3 parameters to test-expect-failure"
@@ -357,10 +358,11 @@ test_expect_failure () {
test_known_broken_failure_ "$1"
fi
fi
- echo >&3 ""
+ test_finish_
}
test_expect_success () {
+ test_start_
test "$#" = 3 && { test_prereq=$1; shift; } || test_prereq=
test "$#" = 2 ||
error "bug in the test script: not 2 or 3 parameters to test-expect-success"
@@ -375,7 +377,7 @@ test_expect_success () {
test_failure_ "$@"
fi
fi
- echo >&3 ""
+ test_finish_
}
# test_external runs external test scripts that provide continuous