aboutsummaryrefslogtreecommitdiff
path: root/t/test-lib.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-02-18 11:17:27 -0800
committerJunio C Hamano <gitster@pobox.com>2009-02-18 11:17:27 -0800
commit91e80b984e0afda37d288e550fb5832d2b71568c (patch)
treee1fc5942bd993cf558dd849654ce1429a22ca1ec /t/test-lib.sh
parentd61027b21f403a74ba16191756d22717a2e95bd4 (diff)
downloadgit-91e80b984e0afda37d288e550fb5832d2b71568c.tar.gz
git-91e80b984e0afda37d288e550fb5832d2b71568c.tar.xz
tests: fix "export var=val"
Some shells do not like "export var=val"; the right way to write it is to do an assignment and then export just the variable name. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/test-lib.sh')
-rw-r--r--t/test-lib.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh
index 22ed448d5..fc0e1932e 100644
--- a/t/test-lib.sh
+++ b/t/test-lib.sh
@@ -82,7 +82,7 @@ do
-i|--i|--im|--imm|--imme|--immed|--immedi|--immedia|--immediat|--immediate)
immediate=t; shift ;;
-l|--l|--lo|--lon|--long|--long-|--long-t|--long-te|--long-tes|--long-test|--long-tests)
- export GIT_TEST_LONG=t; shift ;;
+ GIT_TEST_LONG=t; export GIT_TEST_LONG; shift ;;
-h|--h|--he|--hel|--help)
help=t; shift ;;
-v|--v|--ve|--ver|--verb|--verbo|--verbos|--verbose)