Improve test script performance, note issues with slow machines

This commit is contained in:
John Hood
2016-04-01 20:06:45 -04:00
parent 7196dfdb26
commit bd2e8fc746
3 changed files with 18 additions and 3 deletions
+3 -1
View File
@@ -23,7 +23,9 @@ baseline()
# ASCII, then ISO-8859-1.
for char in $(seq 32 126) $(seq 160 255) ; do
printf '%02x %s ' $char "$(utf8cp $char)"
printf '%02x ' $char
utf8cp $char
printf ' '
done
printf '\n'
}