Testing: extend test for nearest (1 and 4 points)

This commit is contained in:
Shahram Najm 2022-06-06 15:40:14 +01:00
parent 114ed8a369
commit 06ec1a8aec
1 changed files with 10 additions and 7 deletions

View File

@ -9,13 +9,14 @@
#
. ./include.ctest.sh
set -u
# ---------------------------------------------------------
# This is the test for the JIRA issue ECC-1001
# grib_ls -j -l command (JSON for nearest)
# ---------------------------------------------------------
label="grib_ecc-1001-test"
tempOut=temp.${label}.out
label="grib_ecc-1001_test"
tempOut1=temp.${label}.1.out
tempOut2=temp.${label}.2.out
# Decide if we have the JSON verifier commandline utility
JSON_VERIF="json_xs"
@ -37,13 +38,15 @@ inputs="
"
for f in $inputs; do
rm -f $tempOut
${tools_dir}/grib_ls -m -j -l 51.0,1.0,1 $f > $tempOut
rm -f $tempOut1 $tempOut2
${tools_dir}/grib_ls -m -j -l 51.0,1.0,1 $f > $tempOut1
${tools_dir}/grib_ls -m -j -l 51.0,1.0,4 $f > $tempOut2
if test "x$JSON_CHECK" != "x"; then
$JSON_VERIF -t none < $tempOut
$JSON_VERIF -t none < $tempOut1
$JSON_VERIF -t none < $tempOut2
fi
done
# Clean up
rm -f $tempOut
rm -f $tempOut1 $tempOut2