iso-codes/tests/smoke/runtest.sh

21 lines
497 B
Bash
Raw Normal View History

2020-06-03 09:54:24 +00:00
#!/bin/bash
# If one of the commands below returns non-zero then exit immediately
set -e
cd ../source
echo "Let's check the upstream data files timestamp"
ls data/iso*.json -l
echo "Validating json data files written with correct syntax"
python3 bin/validate_json_data.py
retval=$?
if [ $retval -ne 0 ]; then
echo "FAILED: Validation of data files"
else
echo "PASSED: Validation of data files"
fi
echo "Let's check timestamp of newly generated data files"
ls data/iso*.json -l