From 9e9c863bb76405a798cf0c95b3ebbe8aa3d69cd1 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 18 Feb 2022 13:30:38 +0000 Subject: [PATCH] Testing: add test for g1date when yearOfCentury=255,day=255 --- tests/grib_g1monthlydate.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/grib_g1monthlydate.sh b/tests/grib_g1monthlydate.sh index 9441e60f6..cec628087 100755 --- a/tests/grib_g1monthlydate.sh +++ b/tests/grib_g1monthlydate.sh @@ -15,15 +15,19 @@ sample_g1=$ECCODES_SAMPLES_PATH/GRIB1.tmpl temp=temp.$label.grib ${tools_dir}/grib_set -s marsType=fc,marsStream=wamo $sample_g1 $temp - grib_check_key_equals $temp "mars.date,monthlyVerificationDate" "20060301 20060301" - ${tools_dir}/grib_dump $temp + # Date as string with month names +# -------------------------------- +# Year missing ${tools_dir}/grib_set -s yearOfCentury=255 $sample_g1 $temp 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