mirror of https://github.com/ecmwf/eccodes.git
Testing: add test for g1date when yearOfCentury=255,day=255
This commit is contained in:
parent
23726e78be
commit
9e9c863bb7
|
@ -15,15 +15,19 @@ sample_g1=$ECCODES_SAMPLES_PATH/GRIB1.tmpl
|
||||||
temp=temp.$label.grib
|
temp=temp.$label.grib
|
||||||
|
|
||||||
${tools_dir}/grib_set -s marsType=fc,marsStream=wamo $sample_g1 $temp
|
${tools_dir}/grib_set -s marsType=fc,marsStream=wamo $sample_g1 $temp
|
||||||
|
|
||||||
grib_check_key_equals $temp "mars.date,monthlyVerificationDate" "20060301 20060301"
|
grib_check_key_equals $temp "mars.date,monthlyVerificationDate" "20060301 20060301"
|
||||||
|
|
||||||
${tools_dir}/grib_dump $temp
|
${tools_dir}/grib_dump $temp
|
||||||
|
|
||||||
|
|
||||||
# Date as string with month names
|
# Date as string with month names
|
||||||
|
# --------------------------------
|
||||||
|
# Year missing
|
||||||
${tools_dir}/grib_set -s yearOfCentury=255 $sample_g1 $temp
|
${tools_dir}/grib_set -s yearOfCentury=255 $sample_g1 $temp
|
||||||
grib_check_key_equals $temp "dataDate:s" "mar-16"
|
grib_check_key_equals $temp "dataDate:s" "mar-16"
|
||||||
|
|
||||||
|
# Year and day missing
|
||||||
|
${tools_dir}/grib_set -s yearOfCentury=255,day=255 $sample_g1 $temp
|
||||||
|
grib_check_key_equals $temp "dataDate:s" "mar"
|
||||||
|
|
||||||
|
|
||||||
# Clean up
|
# Clean up
|
||||||
|
|
Loading…
Reference in New Issue