2018-01-02 11:31:02 +00:00
|
|
|
# Copyright 2005-2018 ECMWF.
|
2013-03-25 12:04:10 +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.
|
|
|
|
|
2014-03-31 12:57:06 +00:00
|
|
|
CMAKE_INCLUDE_FILE=include.ctest.sh
|
|
|
|
if [ -f "$CMAKE_INCLUDE_FILE" ]; then
|
|
|
|
# This is the config file for Cmake tests
|
|
|
|
. ./$CMAKE_INCLUDE_FILE
|
2013-03-25 12:04:10 +00:00
|
|
|
|
|
|
|
else
|
2018-08-15 11:00:07 +00:00
|
|
|
set -eax
|
2014-03-31 12:57:06 +00:00
|
|
|
|
|
|
|
echo
|
|
|
|
echo "TEST: $0"
|
|
|
|
|
|
|
|
if [ -z "${data_dir}" ]
|
|
|
|
then
|
|
|
|
cd ../../
|
|
|
|
cpath=`pwd`
|
2015-01-23 22:47:51 +00:00
|
|
|
ECCODES_DEFINITION_PATH=$cpath/definitions
|
|
|
|
export ECCODES_DEFINITION_PATH
|
|
|
|
ECCODES_SAMPLES_PATH=$cpath/samples
|
|
|
|
export ECCODES_SAMPLES_PATH
|
2017-02-03 14:21:24 +00:00
|
|
|
tools_dir=$cpath/tools
|
2017-02-03 14:29:47 +00:00
|
|
|
examples_dir=$cpath/examples/F90
|
2014-03-31 12:57:06 +00:00
|
|
|
data_dir=$cpath/data
|
|
|
|
samples_dir=$cpath/samples
|
2015-11-05 11:30:46 +00:00
|
|
|
|
2016-12-30 13:40:04 +00:00
|
|
|
if test "x$ECCODES_TEST_WITH_VALGRIND" != "x"; then
|
2017-02-03 14:21:24 +00:00
|
|
|
tools_dir="valgrind --error-exitcode=1 -q $cpath/tools"
|
2017-02-03 14:29:47 +00:00
|
|
|
examples_dir="valgrind --error-exitcode=1 -q $cpath/examples/F90"
|
2016-12-30 13:40:04 +00:00
|
|
|
fi
|
2015-11-05 11:30:46 +00:00
|
|
|
|
2014-03-31 12:57:06 +00:00
|
|
|
else
|
|
|
|
echo "Skipping test $0"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2015-11-05 11:30:46 +00:00
|
|
|
cd "$cpath/examples/F90"
|
2014-03-31 12:57:06 +00:00
|
|
|
|
|
|
|
if [ -z "${GRIB_API_INCLUDE}" ]
|
|
|
|
then
|
|
|
|
GRIB_API_INCLUDE=`pwd`/src
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z "${GRIB_API_LIB}" ]
|
|
|
|
then
|
|
|
|
GRIB_API_LIB=`pwd`/src
|
|
|
|
fi
|
2014-04-24 14:00:03 +00:00
|
|
|
|
|
|
|
# Download the data needed for tests
|
|
|
|
${data_dir}/download.sh "${data_dir}"
|
|
|
|
|
2014-03-31 12:57:06 +00:00
|
|
|
set -u
|
2013-03-25 12:04:10 +00:00
|
|
|
fi
|