t3404: make test 57 work with dash and others
commit994fd91d1fd5e9feffc88ab7db19e9c9461b4543
authorMichael J Gruber <git@drmicha.warpmail.net>
Wed, 4 Jul 2012 11:32:04 +0000 (4 13:32 +0200)
committerJunio C Hamano <gitster@pobox.com>
Thu, 5 Jul 2012 22:33:25 +0000 (5 15:33 -0700)
tree73fb781ddc196fd606eaf4f67094aa00ab7853c2
parentb64b7feb730b7a23c7a473a484ba6e68d410c990
t3404: make test 57 work with dash and others

The construct

VAR=value test_must_fail command args

works only for some shells (such as bash) but not others (such as dash)
because VAR=value does not end up in the environment for command when it
is called by the shell function test_must_fail. That is why we explicitly
set and export variable in a subshell, i.e.

(
VAR=value &&
export VAR &&
test_must_fail command args
)

in most places already, bar the newly introduced 57 from b64b7fe
(Add tests for rebase -i --root without --onto, 2012-06-26).

Make test 57 use that construct also.

Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t3404-rebase-interactive.sh