eccodes/examples/python/binary_message.sh

23 lines
463 B
Bash
Raw Normal View History

2013-03-25 12:04:10 +00:00
#!/bin/sh
. ./include.sh
INPUT=${data_dir}/tigge_pf_ecmwf.grib2
OUTPUT=out.grib
$PYTHON $examples_src/binary_message.py $INPUT $OUTPUT
2013-03-25 12:04:10 +00:00
${tools_dir}/grib_compare $INPUT $OUTPUT
rm $OUTPUT || true
# GRIB-568 corrupt grib
# We are expecting the command to fail so must turn off "set -e"
INPUT=${data_dir}/bad.grib
set +e
$PYTHON $examples_src/binary_message.py $INPUT $OUTPUT
status=$?
set -e
# Check command did indeed fail
[ $status != 0 ]
rm $OUTPUT || true