On systems with /bin/sh being different than /bin/bash, make test fails due to some bash-specific constructs. This patch makes it possible to run the test-suite systems with on /bin/sh pointing to /bin/ksh. Signed-off-by: Adam Golebiowski <adamg@xxxxxxxxxxxxx> --- t/t3200-branch.sh | 2 +- t/t7201-co.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/t/t3200-branch.sh b/t/t3200-branch.sh index cb5f7a4..e8ff82f 100755 --- a/t/t3200-branch.sh +++ b/t/t3200-branch.sh @@ -200,7 +200,7 @@ test_expect_success \ test_expect_success \ 'branch from non-branch HEAD w/--track causes failure' \ - '!(git branch --track my10 HEAD^)' + '! git branch --track my10 HEAD^' # Keep this test last, as it changes the current branch cat >expect <<EOF diff --git a/t/t7201-co.sh b/t/t7201-co.sh index 3111baa..51a9928 100755 --- a/t/t7201-co.sh +++ b/t/t7201-co.sh @@ -335,6 +335,6 @@ test_expect_success \ git checkout -b delete-me master && rm .git/refs/heads/delete-me && test refs/heads/delete-me = "$(git symbolic-ref HEAD)" && - !(git checkout --track -b track)' + ! git checkout --track -b track' test_done -- 1.5.4.5 -- http://www.mysza.eu.org/ | Everybody needs someone sure, someone true, PLD Linux developer | Everybody needs some solid rock, I know I do. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html