2010-07-09 10:52:14 +08:00
|
|
|
#! /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
|
2017-04-18 03:32:16 +08:00
|
|
|
# the COPYING file, which can be found at the root of the source code
|
2021-02-17 22:52:36 +08:00
|
|
|
# distribution tree, or in https://www.hdfgroup.org/licenses.
|
2017-04-18 03:32:16 +08:00
|
|
|
# If you do not have access to either file, you may request a copy from
|
|
|
|
# help@hdfgroup.org.
|
2010-07-09 10:52:14 +08:00
|
|
|
|
|
|
|
#
|
|
|
|
# This file: run-c++-ex.sh
|
|
|
|
# Written by: Larry Knox
|
|
|
|
# Date: May 11, 2010
|
|
|
|
#
|
|
|
|
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
|
|
|
|
# #
|
|
|
|
# This script will compile and run the c++ examples from source files #
|
2019-10-04 04:56:34 +08:00
|
|
|
# installed in @examplesdir@/c++ using h5c++. The #
|
2010-07-09 10:52:14 +08:00
|
|
|
# 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
|
|
|
|
|
2019-11-06 05:13:47 +08:00
|
|
|
#
|
|
|
|
# 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
|
2022-05-07 02:06:52 +08:00
|
|
|
# $() won't clobber it.
|
2019-11-06 05:13:47 +08:00
|
|
|
#
|
|
|
|
prefix_relto_examplesdir=$(
|
|
|
|
prefix=@prefix@
|
|
|
|
examplesdir=@examplesdir@
|
|
|
|
if [ ${examplesdir##${prefix}/} != ${examplesdir} ]; then
|
2022-05-07 02:06:52 +08:00
|
|
|
echo $(echo ${examplesdir##${prefix}/} | \
|
|
|
|
sed 's,[^/][^/]*,..,g')
|
2019-11-06 05:13:47 +08:00
|
|
|
else
|
2022-05-07 02:06:52 +08:00
|
|
|
echo $prefix
|
2019-11-06 05:13:47 +08:00
|
|
|
fi
|
|
|
|
)
|
|
|
|
|
2010-07-09 10:52:14 +08:00
|
|
|
# Where the tool is installed.
|
2011-05-05 00:43:16 +08:00
|
|
|
# default is relative path to installed location of the tools
|
2019-11-06 05:13:47 +08:00
|
|
|
prefix="${prefix:-../${prefix_relto_examplesdir}}"
|
2010-07-09 10:52:14 +08:00
|
|
|
AR="@AR@"
|
|
|
|
RANLIB="@RANLIB@"
|
|
|
|
H5TOOL="h5c++" # The tool name
|
|
|
|
H5TOOL_BIN="${prefix}/bin/${H5TOOL}" # The path of the tool binary
|
|
|
|
|
|
|
|
#### Run test ####
|
|
|
|
RunTest()
|
|
|
|
{
|
2011-04-13 01:58:57 +08:00
|
|
|
TEST_EXEC=$1
|
2010-07-09 10:52:14 +08:00
|
|
|
Test=$1".cpp"
|
|
|
|
|
|
|
|
echo
|
|
|
|
echo "################# $1 #################"
|
2011-04-13 01:58:57 +08:00
|
|
|
${H5TOOL_BIN} -o $TEST_EXEC $Test
|
2010-07-09 10:52:14 +08:00
|
|
|
if [ $? -ne 0 ]
|
|
|
|
then
|
|
|
|
echo "messed up compiling $Test"
|
|
|
|
exit 1
|
|
|
|
fi
|
2011-04-13 01:58:57 +08:00
|
|
|
./$TEST_EXEC
|
2010-07-09 10:52:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
################## MAIN ##################
|
|
|
|
|
|
|
|
# Run tests
|
|
|
|
if [ $? -eq 0 ]
|
|
|
|
then
|
2013-09-24 10:12:40 +08:00
|
|
|
echo "*************************************************"
|
|
|
|
echo "** Run C++ API Examples **"
|
|
|
|
echo "** **"
|
|
|
|
echo "*************************************************"
|
2010-07-09 10:52:14 +08:00
|
|
|
if (RunTest create &&\
|
2011-04-13 01:58:57 +08:00
|
|
|
rm create &&\
|
2010-07-09 10:52:14 +08:00
|
|
|
RunTest readdata &&\
|
2011-04-13 01:58:57 +08:00
|
|
|
rm readdata &&\
|
2010-07-09 10:52:14 +08:00
|
|
|
RunTest writedata &&\
|
2011-04-13 01:58:57 +08:00
|
|
|
rm writedata &&\
|
2010-07-09 10:52:14 +08:00
|
|
|
RunTest compound &&\
|
2011-04-13 01:58:57 +08:00
|
|
|
rm compound &&\
|
2010-07-09 10:52:14 +08:00
|
|
|
RunTest extend_ds &&\
|
2011-04-13 01:58:57 +08:00
|
|
|
rm extend_ds &&\
|
2010-07-09 10:52:14 +08:00
|
|
|
RunTest chunks &&\
|
2011-04-13 01:58:57 +08:00
|
|
|
rm chunks &&\
|
|
|
|
RunTest h5group &&\
|
|
|
|
rm h5group); then
|
2010-07-09 10:52:14 +08:00
|
|
|
EXIT_VALUE=${EXIT_SUCCESS}
|
|
|
|
else
|
|
|
|
EXIT_VALUE=${EXIT_FAILURE}
|
|
|
|
fi
|
2013-09-24 10:12:40 +08:00
|
|
|
echo
|
|
|
|
echo "***************************************************"
|
|
|
|
echo "** Run Tutorial Examples **"
|
|
|
|
echo "** **"
|
|
|
|
echo "***************************************************"
|
|
|
|
if (RunTest h5tutr_crtdat &&\
|
|
|
|
rm h5tutr_crtdat &&\
|
|
|
|
RunTest h5tutr_rdwt &&\
|
|
|
|
rm h5tutr_rdwt &&\
|
|
|
|
RunTest h5tutr_crtatt &&\
|
|
|
|
rm h5tutr_crtatt &&\
|
|
|
|
RunTest h5tutr_crtgrp &&\
|
|
|
|
rm h5tutr_crtgrp &&\
|
|
|
|
RunTest h5tutr_crtgrpar &&\
|
|
|
|
rm h5tutr_crtgrpar &&\
|
|
|
|
RunTest h5tutr_crtgrpd &&\
|
|
|
|
rm h5tutr_crtgrpd &&\
|
|
|
|
RunTest h5tutr_extend &&\
|
|
|
|
rm h5tutr_extend &&\
|
|
|
|
RunTest h5tutr_subset &&\
|
|
|
|
rm h5tutr_subset &&\
|
|
|
|
RunTest h5tutr_cmprss &&\
|
|
|
|
rm h5tutr_cmprss ); then
|
|
|
|
EXIT_VALUE=${EXIT_SUCCESS}
|
|
|
|
else
|
|
|
|
EXIT_VALUE=${EXIT_FAILURE}
|
|
|
|
fi
|
2010-07-09 10:52:14 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Cleanup
|
|
|
|
rm *.o
|
|
|
|
rm *.h5
|
|
|
|
echo
|
|
|
|
|
2020-04-21 07:12:00 +08:00
|
|
|
exit $EXIT_VALUE
|
2010-07-09 10:52:14 +08:00
|
|
|
|