summaryrefslogtreecommitdiff
path: root/t/perf
diff options
context:
space:
mode:
authorLibravatar Jeff King <peff@peff.net>2021-02-22 21:25:13 -0500
committerLibravatar Junio C Hamano <gitster@pobox.com>2021-02-22 23:30:52 -0800
commit60bb5f2f5d0c8a71254f31fa5d3d3fe42792aaf8 (patch)
tree8147877b5af289d5525bf793fb831003dc17207f /t/perf
parentbuiltin/pack-objects.c: add '--stdin-packs' option (diff)
downloadtgif-60bb5f2f5d0c8a71254f31fa5d3d3fe42792aaf8.tar.xz
p5303: add missing &&-chains
These are in a helper function, so the usual chain-lint doesn't notice them. This function is still not perfect, as it has some git invocations on the left-hand-side of the pipe, but it's primary purpose is timing, not finding bugs or correctness issues. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Taylor Blau <me@ttaylorr.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/perf')
-rwxr-xr-xt/perf/p5303-many-packs.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/perf/p5303-many-packs.sh b/t/perf/p5303-many-packs.sh
index ce0c42cc9f..d90d714923 100755
--- a/t/perf/p5303-many-packs.sh
+++ b/t/perf/p5303-many-packs.sh
@@ -28,11 +28,11 @@ repack_into_n () {
push @commits, $_ if $. % 5 == 1;
}
print reverse @commits;
- ' "$1" >pushes
+ ' "$1" >pushes &&
# create base packfile
head -n 1 pushes |
- git pack-objects --delta-base-offset --revs staging/pack
+ git pack-objects --delta-base-offset --revs staging/pack &&
# and then incrementals between each pair of commits
last= &&