eccodes/tests/grib_ecc-604.sh

61 lines
1.5 KiB
Bash
Raw Normal View History

#!/bin/sh
# Copyright 2005-2018 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
label="grib_ecc-604"
temp_dir=tempdir.${label}
2018-05-08 13:11:01 +00:00
validate()
{
echo "Checking every output file is identical..."
# Get checksum of first file
ck1=`cksum $OUTPUT/output_file_0-0.grib | awk '{print $1}'`
2018-05-08 13:11:01 +00:00
set +x
# Get checksum of all of them and sort unique
2018-05-08 13:11:01 +00:00
res=`cksum $OUTPUT/output_file_* | awk '{print $1}' | sort -u`
set -x
# Should be the same as the first
[ "$res" = "$ck1" ]
2018-05-08 13:11:01 +00:00
}
NUM_THREADS=6
NUM_ITER=200
OUTPUT=output
input=$ECCODES_SAMPLES_PATH/gg_sfc_grib2.tmpl
# input=$ECCODES_SAMPLES_PATH/gg_sfc_grib1.tmpl
2018-05-08 13:11:01 +00:00
rm -fr $temp_dir
mkdir -p $temp_dir
cd $temp_dir
# Test 01: Clone + output
2018-05-08 16:11:45 +00:00
# ------------------------
2018-05-08 13:11:01 +00:00
mkdir -p $OUTPUT
time ${test_dir}/grib_ecc-604-1 par $input $NUM_THREADS $NUM_ITER
validate
2018-05-08 16:11:45 +00:00
# Test 02: No clone + output
# --------------------------
2018-05-08 13:11:01 +00:00
rm -fr $OUTPUT
mkdir -p $OUTPUT
time ${test_dir}/grib_ecc-604-2 par $input $NUM_THREADS $NUM_ITER
validate
# Test 03: Clone + no output
2018-05-08 16:11:45 +00:00
# ---------------------------
rm -fr $OUTPUT
time ${test_dir}/grib_ecc-604-3 par $input $NUM_THREADS $NUM_ITER
# Clean up
cd $test_dir
2018-04-25 15:15:07 +00:00
rm -fr $temp_dir