2015-02-02 17:17:29 +00:00
|
|
|
#!/bin/sh
|
2015-12-31 12:44:51 +00:00
|
|
|
# Copyright 2005-2016 ECMWF.
|
2015-02-02 17:17:29 +00:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
|
|
|
#set -x
|
|
|
|
|
|
|
|
#Enter data dir
|
|
|
|
cd ${data_dir}/bufr
|
|
|
|
|
|
|
|
#Define a common label for all the tmp files
|
|
|
|
label="bufr_get_test"
|
|
|
|
|
|
|
|
#Create log file
|
|
|
|
fLog=${label}".log"
|
|
|
|
rm -f $fLog
|
|
|
|
touch $fLog
|
|
|
|
|
|
|
|
#Define tmp file
|
|
|
|
fTmp=${label}".tmp.txt"
|
|
|
|
rm -f $fTmp
|
|
|
|
|
|
|
|
#Define another tmp file to store the test results
|
|
|
|
res_get=${label}".get.test"
|
|
|
|
rm -f $res_get
|
|
|
|
|
|
|
|
#-------------------------------------------
|
|
|
|
# Test "-p" switch
|
|
|
|
#-------------------------------------------
|
|
|
|
f="aaen_55.bufr"
|
|
|
|
|
|
|
|
#The reference is the same as for ls
|
|
|
|
ref_get=$f".ls.ref"
|
|
|
|
|
|
|
|
echo "Test: -p switch" >> $fLog
|
|
|
|
echo "file: $f" >> $fLog
|
2015-03-04 17:15:48 +00:00
|
|
|
${tools_dir}/bufr_get -p totalLength,bufrHeaderCentre,bufrHeaderSubCentre,masterTableNumber,masterTablesVersionNumber,localTablesVersionNumber,numberOfSubsets,numberOfObservations $f > $fTmp
|
2015-02-02 17:17:29 +00:00
|
|
|
|
|
|
|
#Write the values into a file and compare with ref
|
|
|
|
cat $fTmp | awk '{split($0,a," "); for (i=1; i<=8; i++) print a[i]}' > $res_get
|
2015-08-27 15:06:43 +00:00
|
|
|
diff $ref_get $res_get
|
2015-02-02 17:17:29 +00:00
|
|
|
|
2015-02-04 13:52:37 +00:00
|
|
|
#Clean up
|
2015-02-02 17:17:29 +00:00
|
|
|
rm -f $fLog
|
|
|
|
rm -f $fTmp | true
|
|
|
|
rm -f $res_get | true
|
|
|
|
|