mirror of https://github.com/ecmwf/eccodes.git
Testing: extend test for nearest (1 and 4 points)
This commit is contained in:
parent
114ed8a369
commit
06ec1a8aec
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue