mirror of https://github.com/ecmwf/eccodes.git
ECC-465: Add more tests
This commit is contained in:
parent
871628c31e
commit
17a8945803
|
@ -77,6 +77,20 @@ grib_check_key_equals $temp localUsePresent 0
|
|||
grib_check_key_equals $sample_g2 "localUsePresent,section2Used" "1 1"
|
||||
${tools_dir}/grib_set -s deleteLocalDefinition=1 $sample_g2 $temp
|
||||
grib_check_key_equals $temp "localUsePresent,section2Used" "0 0"
|
||||
rm -f $temp
|
||||
|
||||
# Empty local section for GRIB2
|
||||
# ------------------------------
|
||||
sample_g2=$ECCODES_SAMPLES_PATH/reduced_gg_pl_640_grib2.tmpl
|
||||
temp=temp.grib_local.grib
|
||||
${tools_dir}/grib_set -s setLocalDefinition=1,addEmptySection2=1 $sample_g2 $temp
|
||||
grib_check_key_equals $temp section2Length 5
|
||||
|
||||
sample_g2=$ECCODES_SAMPLES_PATH/reduced_gg_pl_400_grib2.tmpl
|
||||
grib_check_key_equals $sample_g2 section2Length 17
|
||||
${tools_dir}/grib_set -s addEmptySection2=1 $sample_g2 $temp
|
||||
grib_check_key_equals $temp section2Length 5
|
||||
rm -f $temp
|
||||
|
||||
# Local Definition 5
|
||||
# -----------------------
|
||||
|
@ -92,4 +106,4 @@ grib_check_key_equals $temp.3 edition,productDefinitionTemplateNumber "2 5"
|
|||
grib_check_key_equals $temp.3 forecastProbabilityNumber,totalNumberOfForecastProbabilities "2 25"
|
||||
grib_check_key_equals $temp.3 probabilityType,scaledValueOfLowerLimit,scaledValueOfUpperLimit "2 54 56"
|
||||
|
||||
rm -f $temp.1 $temp.2 $temp.3
|
||||
rm -f $temp $temp.1 $temp.2 $temp.3
|
||||
|
|
Loading…
Reference in New Issue