eccodes/examples/python/binary_message.sh

22 lines
480 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
2017-01-03 11:24:37 +00:00
OUTPUT=temp.binary_message.grib
2013-03-25 12:04:10 +00:00
$PYTHON $examples_src/binary_message.py $INPUT $OUTPUT
2013-03-25 12:04:10 +00:00
${tools_dir}/grib_compare $INPUT $OUTPUT
2017-01-03 11:24:37 +00:00
rm -f $OUTPUT
# GRIB-568 corrupt grib
# We are expecting the command to fail so must turn off "set -e"
INPUT=${data_dir}/bad.grib
set +e
2015-12-17 14:01:19 +00:00
$PYTHON $examples_src/binary_message.py $INPUT $OUTPUT 2>/dev/null
status=$?
set -e
# Check command did indeed fail
[ $status != 0 ]
2017-01-03 11:24:37 +00:00
rm -f $OUTPUT