mirror of https://github.com/ecmwf/eccodes.git
32 lines
992 B
Bash
32 lines
992 B
Bash
# examples/C include file for CMake
|
|
|
|
set -ea
|
|
# 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
|
|
|
|
proj_dir=@PROJECT_SOURCE_DIR@
|
|
data_dir=@PROJECT_BINARY_DIR@/data
|
|
|
|
# use definitions from binary dir to test if installation will be correct
|
|
def_dir="@CMAKE_BINARY_DIR@/@ECCODES_DEFINITION_SUFF@"
|
|
ECCODES_DEFINITION_PATH="${def_dir}"
|
|
export ECCODES_DEFINITION_PATH
|
|
|
|
tools_dir=@CMAKE_BINARY_DIR@/bin
|
|
examples_dir=@CMAKE_CURRENT_BINARY_DIR@
|
|
|
|
# If this environment variable is set, then run the
|
|
# executables with valgrind
|
|
if test "x$ECCODES_TEST_WITH_VALGRIND" != "x"; then
|
|
tools_dir="valgrind --error-exitcode=1 -q $tools_dir"
|
|
examples_dir="valgrind --error-exitcode=1 -q $examples_dir"
|
|
fi
|
|
|
|
# use samples from binary dir to test if installation will be correct
|
|
samp_dir="@CMAKE_BINARY_DIR@/@ECCODES_SAMPLES_SUFF@"
|
|
ECCODES_SAMPLES_PATH=${samp_dir}
|
|
export ECCODES_SAMPLES_PATH
|