Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
Git 2.7.6
[gitweb.git]
/
t
/
test-lib.sh
diff --git
a/t/test-lib.sh
b/t/test-lib.sh
index bd4b02e9dbf9560cf1285bb6607be83964ecc40a..51e4a88c333463e23957eb07139b01a3de1a1a0e 100644
(file)
--- a/
t/test-lib.sh
+++ b/
t/test-lib.sh
@@
-907,9
+907,11
@@
yes () {
y="$*"
fi
- while echo "$y"
+ i=0
+ while test $i -lt 99
do
- :
+ echo "$y"
+ i=$(($i+1))
done
}