updated test2/run.sh
This commit is contained in:
parent
987f4ef0d7
commit
2453664abb
19
test2/run.sh
19
test2/run.sh
|
@ -7,13 +7,22 @@ fi
|
||||||
# POSITIVE tests
|
# POSITIVE tests
|
||||||
#
|
#
|
||||||
for i in toml-spec-tests/values/*.toml; do
|
for i in toml-spec-tests/values/*.toml; do
|
||||||
echo -n $i ' '
|
fname="$i"
|
||||||
|
ext="${fname##*.}"
|
||||||
|
fname="${fname%.*}"
|
||||||
|
echo -n $fname ' '
|
||||||
res='[OK]'
|
res='[OK]'
|
||||||
if (../toml_json $i >& $i.json.out); then
|
if (../toml_json $fname.toml >& $fname.json.out); then
|
||||||
jq . $i.json.out > t.json
|
jq . $fname.json.out > t.json
|
||||||
mv t.json $i.json.out
|
mv t.json $fname.json.out
|
||||||
if [ -f $i.json ] && (diff $i.json $i.json.out >& /dev/null); then
|
if [ -f $fname.json ]; then
|
||||||
|
if ! (diff $fname.json $fname.json.out >& /dev/null); then
|
||||||
res='[FAILED]'
|
res='[FAILED]'
|
||||||
|
else
|
||||||
|
rm -f $fname.json.out
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
res='[??]'
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
echo $res
|
echo $res
|
||||||
|
|
Loading…
Reference in New Issue