summaryrefslogtreecommitdiff
path: root/t/chainlint/loop-upstream-pipe.test
diff options
context:
space:
mode:
Diffstat (limited to 't/chainlint/loop-upstream-pipe.test')
-rw-r--r--t/chainlint/loop-upstream-pipe.test11
1 files changed, 11 insertions, 0 deletions
diff --git a/t/chainlint/loop-upstream-pipe.test b/t/chainlint/loop-upstream-pipe.test
new file mode 100644
index 0000000..efb77da
--- /dev/null
+++ b/t/chainlint/loop-upstream-pipe.test
@@ -0,0 +1,11 @@
+(
+ git rev-list --objects --no-object-names base..loose |
+ while read oid
+ do
+# LINT: "|| echo" signals failure in loop upstream of a pipe
+ 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 &&