summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 03b9dfb)
raw | patch | inline | side by side (parent: 03b9dfb)
author | Brandon Casey <casey@nrlssc.navy.mil> | |
Tue, 22 Jul 2008 21:21:10 +0000 (16:21 -0500) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Wed, 23 Jul 2008 18:36:31 +0000 (11:36 -0700) |
Some shells have problems with one-shot environment variable export
and function calls. The sequence is rearranged to avoid the one-shot
and to allow the test script to be linked together with '&&'.
Signed-off-by: Brandon Casey <casey@nrlssc.navy.mil>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
and function calls. The sequence is rearranged to avoid the one-shot
and to allow the test script to be linked together with '&&'.
Signed-off-by: Brandon Casey <casey@nrlssc.navy.mil>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t7502-commit.sh | patch | blob | history |
diff --git a/t/t7502-commit.sh b/t/t7502-commit.sh
index c25eff9e468acd628cf0a5e7a0968c801396e9f8..4f2682ea800df599d720108ef8f17de06fedc06c 100755 (executable)
--- a/t/t7502-commit.sh
+++ b/t/t7502-commit.sh
test_expect_success 'a SIGTERM should break locks' '
echo >>negative &&
- "$SHELL_PATH" -c '\''
+ ! "$SHELL_PATH" -c '\''
echo kill -TERM $$ >> .git/FAKE_EDITOR
- GIT_EDITOR=.git/FAKE_EDITOR exec git commit -a'\'' && exit 1 # should fail
- ! test -f .git/index.lock
+ GIT_EDITOR=.git/FAKE_EDITOR
+ export GIT_EDITOR
+ exec git commit -a'\'' &&
+ test ! -f .git/index.lock
'
rm -f .git/MERGE_MSG .git/COMMIT_EDITMSG