#!/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_indexing_test" temp=temp.$label.index.out infile=${data_dir}/index.grib # Writes to "out.gribidx" $EXEC ${test_dir}/grib_indexing ${infile} > $temp diff ${data_dir}/index.ok $temp # reads from "out.gribidx" $EXEC ${test_dir}/grib_read_index ${infile} > $temp diff ${data_dir}/index.ok $temp rm -f out.gribidx $temp #------------------------------- # Test grib_index_build #------------------------------- tempIndex=temp.$label.$$.idx tempOut=temp.$label.$$.out tempRef=temp.$label.$$.ref ${tools_dir}/grib_index_build -N -o $tempIndex ${infile} >/dev/null # Must remove first two lines (filename specifics) ${tools_dir}/grib_dump ${tempIndex} | sed '1,2d' > $tempOut #cat $tempOut cat > $tempRef < $tempGribFile1 cat ${data_dir}/sample.grib2 ${data_dir}/high_level_api.grib2 > $tempGribFile2 ${tools_dir}/grib_index_build -N -o $tempIndex1 $tempGribFile1 ${tools_dir}/grib_index_build -N -o $tempIndex2 $tempGribFile2 ${tools_dir}/grib_compare $tempIndex1 $tempIndex2 rm -f $tempIndex1 $tempIndex2 $tempGribFile1 $tempGribFile2 # ECC-1516 # --------- sample1=$ECCODES_SAMPLES_PATH/GRIB1.tmpl ${tools_dir}/grib_index_build -N -o $tempIndex1 $sample1 > /dev/null ${tools_dir}/grib_dump $tempIndex1 >/dev/null # Clean up rm -f $tempOut $tempRef rm -f $tempIndex $tempIndex1 $tempIndex2 $tempGribFile1 $tempGribFile2