2022-01-17 13:59:03 +00:00
|
|
|
#!/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.
|
|
|
|
#
|
|
|
|
|
2022-04-04 12:35:10 +00:00
|
|
|
. ./include.ctest.sh
|
2022-01-17 13:59:03 +00:00
|
|
|
|
2022-12-21 11:23:48 +00:00
|
|
|
# Define a common label for all the tmp files
|
2022-01-17 14:10:59 +00:00
|
|
|
label="grib_values_check_c"
|
2022-01-17 13:59:03 +00:00
|
|
|
tempErr=${label}.tmp.err
|
|
|
|
tempRef=${label}.tmp.ref
|
|
|
|
|
|
|
|
cat > $tempRef <<EOF
|
2024-01-27 23:49:54 +00:00
|
|
|
Error: "level" - Value is different
|
|
|
|
Error: "levelll" - Key/value not found
|
2022-01-17 13:59:03 +00:00
|
|
|
EOF
|
|
|
|
|
2022-01-17 18:33:53 +00:00
|
|
|
# Input GRIB file path is hard coded in the example
|
2022-12-21 11:23:48 +00:00
|
|
|
${examples_dir}/c_grib_values_check 2> $tempErr
|
2022-01-17 13:59:03 +00:00
|
|
|
|
2022-12-21 11:23:48 +00:00
|
|
|
# Compare stderr with the reference
|
|
|
|
cat $tempErr
|
|
|
|
diff $tempRef $tempErr
|
2022-01-17 13:59:03 +00:00
|
|
|
|
|
|
|
# Clean up
|
2022-12-21 11:23:48 +00:00
|
|
|
rm -f $tempRef $tempErr
|