#!/bin/sh # (C) Copyright 2005- ECMWF. # # This software is licensed under the terms of the Apache Licence Version 2.0 # which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. # # In applying this licence, ECMWF does not waive the privileges and immunities granted to it by # virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. # . ./include.ctest.sh label="grib_element_test" tempRef=temp.${label}.ref tempText=temp.${label}.txt tempFilt=temp.${label}.filt input=$ECCODES_SAMPLES_PATH/reduced_gg_pl_48_grib2.tmpl # Print the last three entries from the "pl" array cat > $tempFilt < $tempText echo "elemA=36, elemB=25, elemC=20, elemZ=20" > $tempRef diff $tempRef $tempText # Invalid element indexes cat > $tempFilt < $tempText 2>&1 status=$? set -e [ $status -ne 0 ] grep -q "Invalid element.*Value must be between 0 and 95" $tempText cat > $tempFilt < $tempText 2>&1 status=$? set -e [ $status -ne 0 ] grep -q "Invalid element.*Value must be between 0 and 95" $tempText # Access a double array input=$ECCODES_SAMPLES_PATH/sh_ml_grib2.tmpl cat > $tempFilt < $tempFilt <