Testing: ifsParam key

This commit is contained in:
Shahram Najm 2023-08-22 21:36:04 +01:00
parent 6bf3940027
commit 6b3fab9e35
2 changed files with 36 additions and 0 deletions

View File

@ -88,6 +88,7 @@ if( HAVE_BUILD_TOOLS )
grib_calendar grib_calendar
grib_md5 grib_md5
grib_cfNames grib_cfNames
grib_ifsParam
grib_packing_order grib_packing_order
filter_substr filter_substr
grib_uerra grib_uerra

35
tests/grib_ifsParam.sh Executable file
View File

@ -0,0 +1,35 @@
#!/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_ifsParam_test"
tempLog=temp.$label.log
tempGrib=temp.$label.grib
tempText=temp.$label.txt
sample_g1="$ECCODES_SAMPLES_PATH/GRIB1.tmpl"
sample_g2="$ECCODES_SAMPLES_PATH/GRIB2.tmpl"
${tools_dir}/grib_set -s paramId=167 $sample_g1 $tempGrib
grib_check_key_equals $tempGrib ifsParam 167
${tools_dir}/grib_set -s paramId=129001 $sample_g1 $tempGrib
grib_check_key_equals $tempGrib ifsParam 1
${tools_dir}/grib_set -s paramId=200001 $sample_g1 $tempGrib
grib_check_key_equals $tempGrib ifsParam 1
${tools_dir}/grib_set -s paramId=211001 $sample_g1 $tempGrib
grib_check_key_equals $tempGrib ifsParam 210001
# Clean up
rm -f $tempGrib $tempText $tempLog