2015-02-04 15:58:52 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# Copyright 2005-2015 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.sh
|
|
|
|
|
|
|
|
|
|
|
|
f=${data_dir}/bufr/syno_multi.bufr
|
2015-02-04 16:32:00 +00:00
|
|
|
fTmp=${f}.c.cloned
|
2015-02-04 15:58:52 +00:00
|
|
|
|
|
|
|
REDIRECT=/dev/null
|
|
|
|
|
|
|
|
#Write the values into a file and compare with reference
|
|
|
|
${examples_dir}/bufr_clone $f $fTmp >$REDIRECT 2> $REDIRECT
|
|
|
|
|
|
|
|
set +e
|
|
|
|
${tools_dir}/bufr_compare $f $fTmp >$REDIRECT 2> $REDIRECT
|
|
|
|
|
2015-02-04 16:32:00 +00:00
|
|
|
#Check if clone is different
|
2015-02-04 15:58:52 +00:00
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
echo "cloning produced identical files " >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2015-02-04 16:32:00 +00:00
|
|
|
#Check if clone has the same number of messages
|
|
|
|
[ `${tools_dir}/bufr_count $f` = `${tools_dir}/bufr_count $fTmp` ]
|
|
|
|
|
|
|
|
|
2015-02-04 15:58:52 +00:00
|
|
|
#Clean up
|
|
|
|
rm -f $fTmp
|