eccodes/tests/bufrdc_ref.sh

50 lines
1.2 KiB
Bash
Raw Normal View History

#!/bin/sh
# Copyright 2005-2014 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.
#
2014-09-01 12:20:22 +00:00
set -ex
. ./include.sh
REDIRECT=/dev/null
2014-09-01 12:20:22 +00:00
cat > bufrdc_num_ref.filter<<EOF
set subsetNumber=0;
print "[numericValues!1%23.14e]";
EOF
for file in ${data_dir}/bufr/*.bufr
do
2014-08-07 14:02:31 +00:00
# Test numeric data: compare output of filter (res) with reference file (ref)
res_num=$file.num.test
ref_num=$file.num.ref
2014-09-01 12:20:22 +00:00
diff_num=$file.num.diff
2014-08-07 14:02:31 +00:00
rm -f $res_num | true
set +e
2014-09-01 12:20:22 +00:00
${tools_dir}bufr_filter bufrdc_num_ref.filter $file 2> $REDIRECT > $res_num
if [ $? != 0 ]
then
mv $file $file.no
fi
2014-08-07 14:02:31 +00:00
# Cannot use plain diff. We need to compare FLOAT NUMBERS with a tolerance
2014-09-01 12:20:22 +00:00
#perl number_compare.pl $ref_num $res_num >$REDIRECT 2> $REDIRECT
numdiff $ref_num $res_num > $diff_num 2> $diff_num
if [ $? != 0 ]
then
mv $file $file.no
fi
#rm -f $res_num $diff_num
done
2014-08-07 12:12:08 +00:00
rm -f bufrdc_ref.filter