summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-09-04 02:17:50 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-09-04 02:17:50 (GMT)
commitd11448f685f5fac85daef59f8dd98c723d438fe9 (patch)
treed94599988c3ab93820e341c6bcd2c79218c13e5e /t
parent8b2707101aa52d4da98becea0aa910de13768488 (diff)
parentfaacc5aa7c3d9c0695bf0203b55c4fd77cd5cda3 (diff)
downloadgit-d11448f685f5fac85daef59f8dd98c723d438fe9.zip
git-d11448f685f5fac85daef59f8dd98c723d438fe9.tar.gz
git-d11448f685f5fac85daef59f8dd98c723d438fe9.tar.bz2
Merge branch 'ps/t1509-chroot-test-fixup' into maint
t1509 test that requires a dedicated VM environment had some bitrot, which has been corrected. * ps/t1509-chroot-test-fixup: tests: fix cleanup after tests in t1509-root-worktree tests: fix broken && chains in t1509-root-worktree
Diffstat (limited to 't')
-rwxr-xr-xt/t1509-root-worktree.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/t/t1509-root-worktree.sh b/t/t1509-root-worktree.sh
index b6977d4..553a3f6 100755
--- a/t/t1509-root-worktree.sh
+++ b/t/t1509-root-worktree.sh
@@ -125,7 +125,7 @@ fi
ONE_SHA1=d00491fd7e5bb6fa28c517a0bb32b8b506539d4d
test_expect_success 'setup' '
- rm -rf /foo
+ rm -rf /foo &&
mkdir /foo &&
mkdir /foo/bar &&
echo 1 > /foo/foome &&
@@ -218,7 +218,7 @@ unset GIT_WORK_TREE
test_expect_success 'go to /' 'cd /'
test_expect_success 'setup' '
- rm -rf /.git
+ rm -rf /.git &&
echo "Initialized empty Git repository in /.git/" > expected &&
git init > result &&
test_cmp expected result
@@ -241,8 +241,8 @@ say "auto bare gitdir"
# DESTROYYYYY!!!!!
test_expect_success 'setup' '
- rm -rf /refs /objects /info /hooks
- rm /*
+ rm -rf /refs /objects /info /hooks &&
+ rm -f /expected /ls.expected /me /result &&
cd / &&
echo "Initialized empty Git repository in /" > expected &&
git init --bare > result &&