summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2021-10-11 10:21:49 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2021-10-11 10:21:49 -0700
commit252caf8e41148da9ae15257e692c6251de97607a (patch)
tree7b60f674b15ff118764df9f71c9847b30574fbfa
parentMerge branch 'mr/bisect-in-c-4' (diff)
parentp3400: stop using tac(1) (diff)
downloadtgif-252caf8e41148da9ae15257e692c6251de97607a.tar.xz
Merge branch 'rs/p3400-lose-tac'
Test portability update. * rs/p3400-lose-tac: p3400: stop using tac(1)
-rwxr-xr-xt/perf/p3400-rebase.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/perf/p3400-rebase.sh b/t/perf/p3400-rebase.sh
index 7a0bb29448..43d5a34e8c 100755
--- a/t/perf/p3400-rebase.sh
+++ b/t/perf/p3400-rebase.sh
@@ -18,7 +18,7 @@ test_expect_success 'setup rebasing on top of a lot of changes' '
test_tick &&
git commit -m commit$i unrelated-file$i &&
echo change$i >unrelated-file$i &&
- test_seq 1000 | tac >>unrelated-file$i &&
+ test_seq 1000 | sort -nr >>unrelated-file$i &&
git add unrelated-file$i &&
test_tick &&
git commit -m commit$i-reverse unrelated-file$i ||