eccodes/examples/C/bufr_keys_iterator.sh

34 lines
849 B
Bash
Executable File

#!/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.
#
set -x
. ./include.ctest.sh
# Define a common label for all the tmp files
label="bufr_keys_iterator_test_c"
# Define tmp file
fTmp=${label}".tmp.txt"
rm -f $fTmp
REDIRECT=/dev/null
f=${data_dir}/bufr/syno_1.bufr
${examples_dir}/c_bufr_keys_iterator $f 2> $REDIRECT > $fTmp
# Check the output
grep -q 'ident=91334' $fTmp
grep -q '#5#cloudAmount->percentConfidence=70' $fTmp
grep -q 'unexpandedDescriptors=(array of 10)' $fTmp
# Clean up
rm -f $fTmp