summaryrefslogtreecommitdiffstats
path: root/t/t1050-large.sh
diff options
context:
space:
mode:
authorEric Sunshine <sunshine@sunshineco.com>2018-07-02 02:23:56 +0200
committerJunio C Hamano <gitster@pobox.com>2018-07-16 23:38:47 +0200
commitf2deabfcb66fdf0fd311a28f6de6704be56b6935 (patch)
treede79959af7a406b680fd9034d3e078470f1dc8e1 /t/t1050-large.sh
parentt0000-t0999: fix broken &&-chains (diff)
downloadgit-f2deabfcb66fdf0fd311a28f6de6704be56b6935.tar.xz
git-f2deabfcb66fdf0fd311a28f6de6704be56b6935.zip
t1000-t1999: fix broken &&-chains
Signed-off-by: Eric Sunshine <sunshine@sunshineco.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t1050-large.sh')
-rwxr-xr-xt/t1050-large.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/t1050-large.sh b/t/t1050-large.sh
index f9eb143f43..1a9b21b293 100755
--- a/t/t1050-large.sh
+++ b/t/t1050-large.sh
@@ -108,7 +108,7 @@ test_expect_success 'packsize limit' '
test-tool genrandom "c" $(( 128 * 1024 )) >mid3 &&
git add mid1 mid2 mid3 &&
- count=0
+ count=0 &&
for pi in .git/objects/pack/pack-*.idx
do
test -f "$pi" && count=$(( $count + 1 ))
@@ -116,8 +116,8 @@ test_expect_success 'packsize limit' '
test $count = 2 &&
(
- git hash-object --stdin <mid1
- git hash-object --stdin <mid2
+ git hash-object --stdin <mid1 &&
+ git hash-object --stdin <mid2 &&
git hash-object --stdin <mid3
) |
sort >expect &&