mirror of https://github.com/ecmwf/eccodes.git
44 lines
1.2 KiB
Bash
Executable File
44 lines
1.2 KiB
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.
|
|
#
|
|
|
|
. ./include.ctest.sh
|
|
|
|
REDIRECT=/dev/null
|
|
|
|
cat > bufrdc_desc_ref.filter<<EOF
|
|
print "[bufrdcExpandedDescriptors!1''%06d]";
|
|
EOF
|
|
|
|
bufr_files=`cat ${data_dir}/bufr/bufr_data_files.txt`
|
|
for bf in ${bufr_files}
|
|
do
|
|
file=${data_dir}/bufr/$bf
|
|
|
|
# Test descriptors: compare output of filter (res) with reference file (ref)
|
|
res_desc=$file.desc.test
|
|
ref_desc=$file.desc.ref
|
|
diff_desc=$file.desc.diff
|
|
|
|
rm -f $res_desc
|
|
|
|
${tools_dir}/codes_bufr_filter bufrdc_desc_ref.filter $file 2> $REDIRECT > $res_desc
|
|
if [ -f "$ref_desc" ]; then
|
|
diff $ref_desc $res_desc > $diff_desc 2> $diff_desc
|
|
fi
|
|
rm -f $res_desc $diff_desc
|
|
done
|
|
|
|
# ECC-1631: Segmentation fault: Decode bufrdcExpandedDescriptors as string
|
|
echo 'print "[bufrdcExpandedDescriptors:s]";' | ${tools_dir}/codes_bufr_filter - $ECCODES_SAMPLES_PATH/BUFR4.tmpl
|
|
|
|
|
|
# Clean up
|
|
rm -f bufrdc_desc_ref.filter
|