eccodes/examples/python/include.sh

36 lines
822 B
Bash
Raw Normal View History

2014-03-31 16:15:20 +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
2014-03-31 16:15:20 +00:00
else
set -ea
echo
echo "TEST: $0"
2013-03-25 12:04: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 16:15:20 +00:00
cpath=$TOPBUILDDIR
ECCODES_DEFINITION_PATH=$cpath/definitions
export ECCODES_DEFINITION_PATH
ECCODES_SAMPLES_PATH=$cpath/samples
export ECCODES_SAMPLES_PATH
2014-03-31 16:15:20 +00:00
tools_dir=$cpath/tools/
examples_dir=$cpath/examples/python
data_dir=$cpath/data
examples_src=$examples_dir
2013-03-25 12:04:10 +00:00
2014-03-31 16:15:20 +00:00
PYTHONPATH=$cpath/python:$cpath/python/.libs:$PYTHONPATH
export PYTHONPATH
2013-03-25 12:04:10 +00:00
# Download the data needed for tests
${data_dir}/download.sh "${data_dir}"
2014-03-31 16:15:20 +00:00
set -u
2013-03-25 12:04:10 +00:00
2014-03-31 16:15:20 +00:00
fi