2013-03-25 12:04:10 +00:00
|
|
|
#!/bin/sh
|
2020-01-28 14:32:34 +00:00
|
|
|
# (C) Copyright 2005- ECMWF.
|
2013-03-25 12:04:10 +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.
|
2013-03-25 14:23:07 +00:00
|
|
|
#
|
2013-03-25 12:04:10 +00:00
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
|
2022-04-03 22:02:48 +00:00
|
|
|
. ./include.ctest.sh
|
2013-03-25 12:04:10 +00:00
|
|
|
|
|
|
|
infile=${data_dir}/mixed.grib
|
|
|
|
outfile=${data_dir}/read_any.out
|
|
|
|
|
2018-09-06 13:56:41 +00:00
|
|
|
$EXEC $test_dir/read_any $infile > ${outfile}
|
2013-03-25 12:04:10 +00:00
|
|
|
|
|
|
|
diff ${outfile} ${data_dir}/read_any.ok
|
|
|
|
|
|
|
|
rm -f ${outfile}
|
|
|
|
|
|
|
|
count=`${tools_dir}/grib_count ${data_dir}/pad.grib`
|
2015-02-02 22:00:32 +00:00
|
|
|
if [ $count != 6 ]; then
|
2024-08-26 10:41:13 +00:00
|
|
|
echo "Error: grib_io problem"
|
2013-03-25 12:04:10 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2015-02-02 22:00:32 +00:00
|
|
|
${tools_dir}/grib_count -v ${data_dir}/pad.grib >/dev/null
|
2024-08-26 10:41:13 +00:00
|
|
|
|
|
|
|
##
|
|
|
|
$EXEC $test_dir/read_any $ECCODES_SAMPLES_PATH/reduced_gg_pl_32_grib1.tmpl
|
|
|
|
$EXEC $test_dir/read_any $ECCODES_SAMPLES_PATH/reduced_gg_pl_32_grib2.tmpl
|