eccodes/examples/F77/include.sh

41 lines
615 B
Bash

set -ea
echo
echo "TEST: $0"
if [ -z "${data_dir}" ]
then
cd ../../
cpath=`pwd`
GRIB_DEFINITION_PATH=$cpath/definitions
export GRIB_DEFINITION_PATH
GRIB_TEMPLATES_PATH=$cpath/templates
export GRIB_TEMPLATES_PATH
tools_dir=$cpath/tools/
examples_dir=$cpath/examples/F77/
data_dir=$cpath/data
else
echo "Skipping test $0"
exit
fi
cd ${examples_dir}
if [ -z "${GRIB_API_INCLUDE}" ]
then
GRIB_API_INCLUDE=`pwd`/src
fi
if [ -z "${GRIB_API_LIB}" ]
then
GRIB_API_LIB=`pwd`/src
fi
# Download the data needed for tests
${data_dir}/download.sh "${data_dir}"
#${tools_dir}grib_info
set -u