diff options
author | Junio C Hamano <gitster@pobox.com> | 2021-10-11 10:21:49 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-10-11 10:21:49 -0700 |
commit | 252caf8e41148da9ae15257e692c6251de97607a (patch) | |
tree | 7b60f674b15ff118764df9f71c9847b30574fbfa /t | |
parent | Merge branch 'mr/bisect-in-c-4' (diff) | |
parent | p3400: stop using tac(1) (diff) | |
download | tgif-252caf8e41148da9ae15257e692c6251de97607a.tar.xz |
Merge branch 'rs/p3400-lose-tac'
Test portability update.
* rs/p3400-lose-tac:
p3400: stop using tac(1)
Diffstat (limited to 't')
-rwxr-xr-x | t/perf/p3400-rebase.sh | 2 |
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 || |