2016-09-30 07:53:04 +00:00
|
|
|
#!/bin/sh
|
2018-05-15 17:03:02 +00:00
|
|
|
# Copyright 2005-2018 ECMWF.
|
2016-09-30 07:53:04 +00:00
|
|
|
#
|
|
|
|
# This software is licensed under the terms of the Apache Licence Version 2.0
|
|
|
|
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
|
|
|
|
#
|
|
|
|
# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by
|
|
|
|
# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction.
|
|
|
|
#
|
|
|
|
|
|
|
|
. ./include.sh
|
|
|
|
|
2018-08-31 14:34:32 +00:00
|
|
|
label="grib_lam_bf"
|
|
|
|
temp=temp.$label.txt
|
|
|
|
|
|
|
|
dump_and_check()
|
|
|
|
{
|
|
|
|
input=$1
|
|
|
|
${tools_dir}/grib_dump -O $input >$temp 2>&1
|
|
|
|
set +e
|
|
|
|
# Look for the word ERROR in output. We should not find any
|
|
|
|
grep -q 'ERROR ' $temp
|
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
echo "File $input: found string ERROR in grib_dump output!"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
set -e
|
|
|
|
}
|
|
|
|
|
2018-05-10 11:12:44 +00:00
|
|
|
${test_dir}/lam_bf
|
|
|
|
|
2018-08-31 14:34:32 +00:00
|
|
|
dump_and_check lam_bf_lambert_bf.grib
|
|
|
|
dump_and_check lam_bf_mercator_bf.grib
|
|
|
|
dump_and_check lam_bf_polar_stereographic_bf.grib
|
|
|
|
|
|
|
|
rm -f $temp
|