You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
3.0 KiB
102 lines
3.0 KiB
#! /bin/sh
|
|
#
|
|
# Copyright by The HDF Group.
|
|
# All rights reserved.
|
|
#
|
|
# This file is part of HDF5. The full HDF5 copyright notice, including
|
|
# terms governing use, modification, and redistribution, is contained in
|
|
# the COPYING file, which can be found at the root of the source code
|
|
# distribution tree, or in https://www.hdfgroup.org/licenses.
|
|
# If you do not have access to either file, you may request a copy from
|
|
# help@hdfgroup.org.
|
|
|
|
#
|
|
# This file: run-hlc++-ex.sh
|
|
# Written by: Larry Knox
|
|
# Date: May 11, 2010
|
|
#
|
|
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
|
|
# #
|
|
# This script will compile and run the c++ examples from source files #
|
|
# installed in ${prefix}/share/hdf5_examples/hl/c++ using h5c++. The #
|
|
# order for running programs with RunTest in the MAIN section below is taken #
|
|
# from the Makefile. The order is important since some of the test programs #
|
|
# use data files created by earlier test programs. Any future additions should #
|
|
# be placed accordingly. #
|
|
# #
|
|
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
|
|
|
|
# Initializations
|
|
EXIT_SUCCESS=0
|
|
EXIT_FAILURE=1
|
|
|
|
#
|
|
# Try to derive the path to the installation $prefix established
|
|
# by ./configure relative to the examples directory established by
|
|
# ./configure. If successful, set `prefix_relto_examplesdir` to the
|
|
# relative path. Otherwise, set `prefix_relto_examplesdir` to the
|
|
# absolute installation $prefix.
|
|
#
|
|
# This script uses the value of `prefix` in the user's environment, if
|
|
# it is set, below. The content of $() is evaluated in a sub-shell, so
|
|
# if `prefix` is set in the user's environment, the shell statements in
|
|
# $() won't clobbered it.
|
|
#
|
|
prefix_relto_examplesdir=$(
|
|
prefix=/mnt/Storage/Documents/Code/LibraryTest/lib/hdf5-1.14.1
|
|
examplesdir=${prefix}/share/hdf5_examples
|
|
if [ ${examplesdir##${prefix}/} != ${examplesdir} ]; then
|
|
echo $(echo ${examplesdir##${prefix}/} | \
|
|
sed 's,[^/][^/]*,..,g')
|
|
else
|
|
echo $prefix
|
|
fi
|
|
)
|
|
|
|
# Where the tool is installed.
|
|
# default is relative path to installed location of the tools
|
|
prefix="${prefix:-../../${prefix_relto_examplesdir}}"
|
|
AR="ar"
|
|
RANLIB="ranlib"
|
|
H5TOOL="h5c++" # The tool name
|
|
H5TOOL_BIN="${prefix}/bin/${H5TOOL}" # The path of the tool binary
|
|
|
|
#### Run test ####
|
|
RunTest()
|
|
{
|
|
TEST_EXEC=$1
|
|
Test=$1".cpp"
|
|
|
|
echo
|
|
echo "################# $1 #################"
|
|
${H5TOOL_BIN} -o $TEST_EXEC $Test
|
|
if [ $? -ne 0 ]
|
|
then
|
|
echo "messed up compiling $Test"
|
|
exit 1
|
|
fi
|
|
./$TEST_EXEC
|
|
}
|
|
|
|
|
|
|
|
################## MAIN ##################
|
|
|
|
# Run tests
|
|
if [ $? -eq 0 ]
|
|
then
|
|
if (RunTest ptExampleFL &&\
|
|
rm ptExampleFL); then
|
|
EXIT_VALUE=${EXIT_SUCCESS}
|
|
else
|
|
EXIT_VALUE=${EXIT_FAILURE}
|
|
fi
|
|
fi
|
|
|
|
# Cleanup
|
|
rm *.o
|
|
rm *.h5
|
|
echo
|
|
|
|
exit $EXIT_VALUE
|
|
|
|
|