summaryrefslogtreecommitdiffstats
path: root/t/chainlint/chain-break-continue.expect
diff options
context:
space:
mode:
Diffstat (limited to 't/chainlint/chain-break-continue.expect')
-rw-r--r--t/chainlint/chain-break-continue.expect12
1 files changed, 12 insertions, 0 deletions
diff --git a/t/chainlint/chain-break-continue.expect b/t/chainlint/chain-break-continue.expect
new file mode 100644
index 0000000..47a3457
--- /dev/null
+++ b/t/chainlint/chain-break-continue.expect
@@ -0,0 +1,12 @@
+git ls-tree --name-only -r refs/notes/many_notes |
+while read path
+do
+ test "$path" = "foobar/non-note.txt" && continue
+ test "$path" = "deadbeef" && continue
+ test "$path" = "de/adbeef" && continue
+
+ if test $(expr length "$path") -ne $hexsz
+ then
+ return 1
+ fi
+done