]> git.ipfire.org Git - thirdparty/git.git/blob - t/chainlint/loop-upstream-pipe.test
Merge branch 'jk/clone-allow-bare-and-o-together'
[thirdparty/git.git] / t / chainlint / loop-upstream-pipe.test
1 (
2 git rev-list --objects --no-object-names base..loose |
3 while read oid
4 do
5 # LINT: "|| echo" signals failure in loop upstream of a pipe
6 path="$objdir/$(test_oid_to_path "$oid")" &&
7 printf "%s %d\n" "$oid" "$(test-tool chmtime --get "$path")" ||
8 echo "object list generation failed for $oid"
9 done |
10 sort -k1
11 ) >expect &&