unicode: update the width tables to Unicode 15
[alt-git.git] / t / chainlint / chain-break-continue.expect
blob47a34577100024bf68a6a193ebe55efa525034e2
1 git ls-tree --name-only -r refs/notes/many_notes |
2 while read path
3 do
4         test "$path" = "foobar/non-note.txt" && continue
5         test "$path" = "deadbeef" && continue
6         test "$path" = "de/adbeef" && continue
8         if test $(expr length "$path") -ne $hexsz
9         then
10                 return 1
11         fi
12 done