mirror of https://github.com/ecmwf/eccodes.git
Testing: MARS keys
This commit is contained in:
parent
3cd9b6a378
commit
958efbe33d
|
@ -288,7 +288,8 @@ if( HAVE_BUILD_TOOLS )
|
|||
grib_local_NCEP
|
||||
grib_neg_fctime
|
||||
codes_split_file
|
||||
grib_mars_keys)
|
||||
grib_mars_keys1
|
||||
grib_mars_keys2)
|
||||
|
||||
if( HAVE_AEC AND ENABLE_EXTRA_TESTS )
|
||||
list(APPEND tests_extra grib_ecc-1431)
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
. ./include.ctest.sh
|
||||
|
||||
label="grib_mars_keys_test"
|
||||
label="grib_mars_keys1_test"
|
||||
tempOut=temp.${label}.out
|
||||
tempGrib=temp.${label}.grib
|
||||
tempRef=temp.${label}.ref
|
|
@ -0,0 +1,32 @@
|
|||
#!/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.ctest.sh
|
||||
|
||||
label="grib_mars_keys2_test"
|
||||
tempGrib=temp.${label}.grib
|
||||
|
||||
grib2_sample=$ECCODES_SAMPLES_PATH/reduced_gg_pl_32_grib2.tmpl
|
||||
|
||||
# Check all combinations
|
||||
# ------------------------
|
||||
for cfg in $ECCODES_DEFINITION_PATH/mars/grib.*.def; do
|
||||
b=$(basename $cfg)
|
||||
num=$(echo $b | awk -F. '{print NF}')
|
||||
if [ $num -eq 4 ]; then
|
||||
# Each file should be of the form grib.$stream.$type.def
|
||||
stream=$(echo $b | awk -F. '{print $2}')
|
||||
type=$(echo $b | awk -F. '{print $3}')
|
||||
${tools_dir}/grib_set -s stream=$stream,type=$type $grib2_sample $tempGrib
|
||||
${tools_dir}/grib_ls -m $tempGrib
|
||||
fi
|
||||
done
|
||||
|
||||
rm -f $tempGrib
|
Loading…
Reference in New Issue