Testing: Increase coverage: bufr_compare

This commit is contained in:
Shahram Najm 2023-12-18 16:49:36 +00:00
parent 1916dc1d34
commit 99ccb82e82
1 changed files with 11 additions and 0 deletions

View File

@ -52,6 +52,17 @@ if [ $? -eq 0 ]; then
fi
set -e
# Namespace options
set +e
${tools_dir}/bufr_compare -c ls:n $f1 $f2 >> $fLog
statusA=$?
${tools_dir}/bufr_compare -a -c ls:n $f1 $f2 >> $fLog
statusB=$?
set -e
[ $statusA -ne 0 ]
[ $statusB -ne 0 ]
#----------------------------------------------------
# Test: comparing with and without the -b switch
#----------------------------------------------------