mirror of https://github.com/ecmwf/eccodes.git
35 lines
870 B
Bash
Executable File
35 lines
870 B
Bash
Executable File
#!/bin/sh
|
|
# (C) Copyright 2005- ECMWF.
|
|
#
|
|
# 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
|
|
|
|
# Define a common label for all the tmp files
|
|
label="grib_dump_samples_test"
|
|
temp=${label}".temp"
|
|
|
|
# Test selected sample GRIB files
|
|
samples="
|
|
GRIB1.tmpl
|
|
GRIB2.tmpl
|
|
sh_ml_grib1.tmpl
|
|
sh_ml_grib2.tmpl
|
|
reduced_gg_pl_48_grib1.tmpl
|
|
reduced_gg_pl_48_grib2.tmpl
|
|
regular_ll_sfc_grib1.tmpl
|
|
regular_ll_sfc_grib2.tmpl
|
|
"
|
|
for file in $samples; do
|
|
sf="$ECCODES_SAMPLES_PATH/$file"
|
|
${tools_dir}/grib_dump -O $sf >/dev/null
|
|
done
|
|
|
|
|
|
rm -f $temp
|