Merge branch 'ee/clean-test-fixes'

* ee/clean-test-fixes:
  t7300: fix broken && chains
maint
Junio C Hamano 2015-09-02 12:50:16 -07:00
commit 83d9092f95
1 changed files with 4 additions and 12 deletions

View File

@ -432,9 +432,7 @@ test_expect_success 'nested git work tree' '
(
cd foo &&
git init &&
>hello.world
git add . &&
git commit -a -m nested
test_commit nested hello.world
) &&
(
cd bar &&
@ -443,9 +441,7 @@ test_expect_success 'nested git work tree' '
(
cd baz/boo &&
git init &&
>deeper.world
git add . &&
git commit -a -m deeply.nested
test_commit deeply.nested deeper.world
) &&
git clean -f -d &&
test -f foo/.git/index &&
@ -601,9 +597,7 @@ test_expect_success 'force removal of nested git work tree' '
(
cd foo &&
git init &&
>hello.world
git add . &&
git commit -a -m nested
test_commit nested hello.world
) &&
(
cd bar &&
@ -612,9 +606,7 @@ test_expect_success 'force removal of nested git work tree' '
(
cd baz/boo &&
git init &&
>deeper.world
git add . &&
git commit -a -m deeply.nested
test_commit deeply.nested deeper.world
) &&
git clean -f -f -d &&
! test -d foo &&