summaryrefslogtreecommitdiffstats
path: root/t/test-lib.sh
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-12-29 11:25:04 +0100
committerJunio C Hamano <junkio@cox.net>2006-12-29 11:25:04 +0100
commit04509738b5779c33e59b93e4959b0ac19acab838 (patch)
treef0342e43374171164b99855218162609510cd0cf /t/test-lib.sh
parentMerge branch 'jc/utf8' (diff)
downloadgit-04509738b5779c33e59b93e4959b0ac19acab838.tar.xz
git-04509738b5779c33e59b93e4959b0ac19acab838.zip
t5400 send-pack test: try a bit more nontrivial transfer.
Not that this reveals anything new, but I did test_tick shell function in test-lib and found it rather cute and nice. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to '')
-rwxr-xr-xt/test-lib.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh
index 98f69d89f3..bf108d4226 100755
--- a/t/test-lib.sh
+++ b/t/test-lib.sh
@@ -96,6 +96,17 @@ test_count=0
trap 'echo >&5 "FATAL: Unexpected exit with code $?"; exit 1' exit
+test_tick () {
+ if test -z "${test_tick+set}"
+ then
+ test_tick=432630000
+ else
+ test_tick=$(($test_tick + 60))
+ fi
+ GIT_COMMITTER_DATE=$test_tick
+ GIT_AUTHOR_DATE=$test_tick
+ export GIT_COMMITTER_DATE GIT_AUTHOR_DATE
+}
# You are not expected to call test_ok_ and test_failure_ directly, use
# the text_expect_* functions instead.