summaryrefslogtreecommitdiff
path: root/t/chainlint/return-loop.expect
diff options
context:
space:
mode:
Diffstat (limited to 't/chainlint/return-loop.expect')
-rw-r--r--t/chainlint/return-loop.expect5
1 files changed, 5 insertions, 0 deletions
diff --git a/t/chainlint/return-loop.expect b/t/chainlint/return-loop.expect
new file mode 100644
index 0000000..cfc0549
--- /dev/null
+++ b/t/chainlint/return-loop.expect
@@ -0,0 +1,5 @@
+while test $i -lt $((num - 5))
+do
+ git notes add -m "notes for commit$i" HEAD~$i || return 1
+ i=$((i + 1))
+done