2015-01-05 15:45:46 +00:00
|
|
|
# Copyright 2005-2015 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.
|
2013-03-25 14:23:07 +00:00
|
|
|
#
|
2013-03-25 12:04:10 +00:00
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
set -ea
|
|
|
|
|
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
|
2014-03-31 12:57:06 +00:00
|
|
|
# This is for autotools
|
|
|
|
echo
|
|
|
|
echo "TEST: $0"
|
|
|
|
|
|
|
|
data_dir=""
|
|
|
|
# save current working dir
|
|
|
|
save=`pwd`
|
|
|
|
|
2015-01-26 17:08:10 +00:00
|
|
|
# If this environment variable is set, then become verbose
|
|
|
|
# so one can see why and how a test failed
|
|
|
|
if test "x$ECCODES_TEST_VERBOSE_OUTPUT" != "x"; then
|
|
|
|
set -x
|
|
|
|
fi
|
|
|
|
|
2014-03-31 12:57:06 +00:00
|
|
|
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
|
2014-03-31 12:57:06 +00:00
|
|
|
tools_dir=$cpath/tools/
|
|
|
|
tigge_dir=$cpath/tigge/
|
|
|
|
data_dir=$cpath/data
|
|
|
|
test_dir=$cpath/tests
|
|
|
|
def_dir=$cpath/definitions
|
2015-02-01 16:35:46 +00:00
|
|
|
src_dir=$cpath/src
|
2014-03-31 12:57:06 +00:00
|
|
|
else
|
|
|
|
tools_dir=""
|
|
|
|
tigge_dir=""
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z "${GRIB_API_INCLUDE}" ]
|
|
|
|
then
|
|
|
|
GRIB_API_INCLUDE=`pwd`/src
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z "${GRIB_API_LIB}" ]
|
|
|
|
then
|
|
|
|
GRIB_API_LIB=`pwd`/src
|
|
|
|
fi
|
|
|
|
|
|
|
|
# go back to current working dir
|
|
|
|
cd $save
|
|
|
|
set -u
|
2014-04-24 14:00:03 +00:00
|
|
|
fi
|
|
|
|
|