summaryrefslogtreecommitdiff
path: root/t/README
diff options
context:
space:
mode:
authorJonathan Nieder <jrnieder@gmail.com>2010-07-21 00:01:01 (GMT)
committerJunio C Hamano <gitster@pobox.com>2010-07-21 18:52:26 (GMT)
commitbdcaa325b47fcacfecb781a28801aafc249ba288 (patch)
tree1b315f9d1d234d8c857d098683fc2849e5c8a3d8 /t/README
parent77b5be2abab69a69618dd40a6ca8b754388b8216 (diff)
downloadgit-bdcaa325b47fcacfecb781a28801aafc249ba288.zip
git-bdcaa325b47fcacfecb781a28801aafc249ba288.tar.gz
git-bdcaa325b47fcacfecb781a28801aafc249ba288.tar.bz2
t/README: correct an exception when breaking a && chain in tests
The correct advice should have been taken from c289c31 (t/t7006: ignore return status of shell's unset builtin, 2010-06-02). A real-life issue we experienced was with "unset", not with "export" (exporting an unset variable may have similar portability issues, though). Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/README')
-rw-r--r--t/README8
1 files changed, 4 insertions, 4 deletions
diff --git a/t/README b/t/README
index a590142..0d1183c 100644
--- a/t/README
+++ b/t/README
@@ -259,11 +259,11 @@ Do:
test ...
That way all of the commands in your tests will succeed or fail. If
- you must ignore the return value of something (e.g. the return
- value of export is unportable) it's best to indicate so explicitly
- with a semicolon:
+ you must ignore the return value of something (e.g., the return
+ after unsetting a variable that was already unset is unportable) it's
+ best to indicate so explicitly with a semicolon:
- export HLAGH;
+ unset HLAGH;
git merge hla &&
git push gh &&
test ...