eccodes/tests/include.sh

76 lines
1.5 KiB
Bash
Raw Normal View History

2020-01-28 14:32:34 +00:00
# (C) Copyright 2005- 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
2015-04-30 09:14:58 +00:00
. ./utils.sh
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"
# Only Unix supported
ECCODES_ON_WINDOWS=0
2014-03-31 12:57:06 +00:00
data_dir=""
# save current working dir
save=`pwd`
set -x
2018-10-26 17:03:31 +00:00
EXEC=""
HAVE_MEMFS=0
HAVE_EXTRA_TESTS=0
HAVE_JPEG=0
2014-03-31 12:57:06 +00:00
if [ -z "${data_dir}" ]
then
cd ../
cpath=`pwd`
2015-12-22 16:53:02 +00:00
proj_dir=$cpath
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
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"
fi
2017-02-03 14:22:21 +00:00
tigge_dir=$cpath/tigge
2014-03-31 12:57:06 +00:00
data_dir=$cpath/data
2017-02-03 14:40:18 +00:00
test_dir=$cpath/tests
2014-03-31 12:57:06 +00:00
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
2017-02-03 14:21:24 +00:00
tools_dir="."
2017-02-03 14:22:21 +00:00
tigge_dir="."
2014-03-31 12:57:06 +00:00
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
2020-07-04 19:57:23 +00:00
# set -u
fi