summaryrefslogtreecommitdiff
path: root/t/chainlint/loop-upstream-pipe.expect
diff options
context:
space:
mode:
Diffstat (limited to 't/chainlint/loop-upstream-pipe.expect')
-rw-r--r--t/chainlint/loop-upstream-pipe.expect10
1 files changed, 10 insertions, 0 deletions
diff --git a/t/chainlint/loop-upstream-pipe.expect b/t/chainlint/loop-upstream-pipe.expect
new file mode 100644
index 0000000..0b82ecc
--- /dev/null
+++ b/t/chainlint/loop-upstream-pipe.expect
@@ -0,0 +1,10 @@
+(
+ git rev-list --objects --no-object-names base..loose |
+ while read oid
+ do
+ path="$objdir/$(test_oid_to_path "$oid")" &&
+ printf "%s %d\n" "$oid" "$(test-tool chmtime --get "$path")" ||
+ echo "object list generation failed for $oid"
+ done |
+ sort -k1
+) >expect &&