prettier prints

This commit is contained in:
CK Tan 2019-10-10 17:34:45 -07:00
parent f782b12864
commit f31bcd0adf
1 changed files with 4 additions and 5 deletions

View File

@ -25,7 +25,7 @@ for i in toml-spec-tests/values/*.toml; do
res='[??]' res='[??]'
fi fi
fi fi
echo $res echo ... $res
done done
@ -34,10 +34,9 @@ done
# #
for i in toml-spec-tests/errors/*.toml; do for i in toml-spec-tests/errors/*.toml; do
echo -n $i ' ' echo -n $i ' '
res='[OK]'
if (../toml_json $i >& $i.json.out); then if (../toml_json $i >& $i.json.out); then
echo '[FAILED]' res='[FAILED]'
else
echo '[OK]'
fi fi
echo ... $res
done done