hdf5/test
Robb Matzke ea3624e133 [svn-r1115] Changes since 19990302
----------------------

./INSTALL
./configure.in
./configure		[REGENERATED]
./src/H5config.h.in	[REGENERATED]
	Improvements for parallel library.  If you have a properly
	working mpicc you should be able to just say:

	    $ CC=mpicc ./configure

	and you will see

	    checking for mpirun... /usr/local/mpi/bin/mpirun
	    checking for parallel support files... skipped
	    checking how to run on one processor...
		     /usr/local/mpi/bin/mpirun -np 1
	    checking how to run in parallel...
		     /usr/local/mpi/bin/mpirun -np $$NPROCS

	To quote from the INSTALL file....

	*** Parallel vs. serial library
	The HDF5 library can be configured to use MPI and MPI-IO for
	parallelizm on a distributed multi-processor system. The easy
	way to do this is to have a properly installed parallel
	compiler (e.g., MPICH's mpicc or IBM's mpcc) and supply that
	executable as the value of the CC environment variable:
	[NOTE: mpcc is not tested yet]

	    $ CC=mpcc ./configure
	    $ CC=/usr/local/mpi/bin/mpicc ./configure

	If no such wrapper script is available then you must specify
	your normal C compiler along with the distribution of
	MPI/MPI-IO which is to be used (values other than `mpich' will
	be added at a later date):

	    $ ./configure --enable-parallel=mpich

	If the MPI/MPI-IO include files and/or libraries cannot be
	found by the compiler then their directories must be given as
	arguments to CPPFLAGS and/or LDFLAGS:

	    $ CPPFLAGS=-I/usr/local/mpi/include \
	      LDFLAGS=-L/usr/local/mpi/lib/LINUX/ch_p4 \
	      ./configure --enable-parallel=mpich

	If a parallel library is being built then configure attempts
	to determine how to run a parallel application on one
	processor and on many processors.  If the compiler is mpicc
	and the user hasn't specified values for RUNSERIAL and
	RUNPARALLEL then configure chooses `mpirun' from the same
	directory as `mpicc':

	    RUNSERIAL:    /usr/local/mpi/bin/mpirun -np 1
	    RUNPARALLEL:  /usr/local/mpi/bin/mpirun -np $${NPROCS:=2}

	The `$${NPROCS:=2}' will be substituted with the value of the
	NPROCS environment variable at the time `make check' is run
	(or the value 2).

./testpar/Makefile.in
	Saying `make check' (or `make test') will run the tests on two
	processors by default.  If you define NPROCS then that many
	processors are used instead:

	    $ NPROCS=4 make check

./configure.in
	Fixed (hopefully) bugs with detecting whether __attribute__
	and __FUNCTION__ are special keywords for the compiler.

./Makefile.in
	Saying `make install' from the top level directory shows
	instructions for using shared libraries.

./config/commence.in
./src/Makefile.in
./test/Makefile.in
./testpar/Makefile.in
./tools/Makefile.in
	Moved the @top_srcdir@ into the makefiles because it was
	expanded too early and had the wrong value.

./INSTALL
	Added a warning that if the wrong version of hdf4 tools are
	installed then `make check' will fail in the tools directory.
1999-03-03 18:17:48 -05:00
..
.distdep [svn-r1108] Changes since 19990225 1999-02-26 14:58:14 -05:00
big.c [svn-r1101] Changes since 19990219 1999-02-25 10:40:27 -05:00
bittests.c [svn-r936] Changes since 19981119 1998-11-20 22:36:51 -05:00
chunk.c [svn-r952] Changes since 19981125 1998-11-25 12:21:21 -05:00
cmpd_dset.c [svn-r1101] Changes since 19990219 1999-02-25 10:40:27 -05:00
dsets.c [svn-r1101] Changes since 19990219 1999-02-25 10:40:27 -05:00
dtypes.c [svn-r1110] Changes since 19990226 1999-03-01 14:44:32 -05:00
enum.c [svn-r1101] Changes since 19990219 1999-02-25 10:40:27 -05:00
extend.c [svn-r952] Changes since 19981125 1998-11-25 12:21:21 -05:00
external.c [svn-r1089] changed the call to open to HDopen since NT needs that 0_BINARY flag 1999-02-21 14:55:24 -05:00
fillval.c [svn-r1011] Changes since 19981217 1999-01-07 06:42:04 -05:00
flush1.c [svn-r944] Changes since 19981120 1998-11-23 15:40:35 -05:00
flush2.c [svn-r944] Changes since 19981120 1998-11-23 15:40:35 -05:00
gheap.c [svn-r949] Changes since 19981124 1998-11-25 09:58:22 -05:00
h5test.c [svn-r971] Changes since 19981214 1998-12-17 14:35:20 -05:00
h5test.h [svn-r949] Changes since 19981124 1998-11-25 09:58:22 -05:00
hyperslab.c [svn-r1110] Changes since 19990226 1999-03-01 14:44:32 -05:00
iopipe.c [svn-r1033] added some calls to get the time elapsed on WIN NT 1999-01-25 12:40:54 -05:00
istore.c [svn-r1110] Changes since 19990226 1999-03-01 14:44:32 -05:00
lheap.c [svn-r949] Changes since 19981124 1998-11-25 09:58:22 -05:00
links.c [svn-r944] Changes since 19981120 1998-11-23 15:40:35 -05:00
Makefile.in [svn-r1115] Changes since 19990302 1999-03-03 18:17:48 -05:00
mount.c [svn-r944] Changes since 19981120 1998-11-23 15:40:35 -05:00
mtime.c [svn-r1101] Changes since 19990219 1999-02-25 10:40:27 -05:00
ohdr.c [svn-r1101] Changes since 19990219 1999-02-25 10:40:27 -05:00
overhead.c [svn-r936] Changes since 19981119 1998-11-20 22:36:51 -05:00
ragged.c [svn-r936] Changes since 19981119 1998-11-20 22:36:51 -05:00
space_overflow.c [svn-r803] Something I forgot to add earlier... 1998-10-27 00:08:09 -05:00
stab.c [svn-r949] Changes since 19981124 1998-11-25 09:58:22 -05:00
tattr.c [svn-r1022] changed the macro for FILE to be FILENAME since it conflicted with a macro 1999-01-12 15:55:21 -05:00
testhdf5.c [svn-r949] Changes since 19981124 1998-11-25 09:58:22 -05:00
testhdf5.h [svn-r949] Changes since 19981124 1998-11-25 09:58:22 -05:00
tfile.c [svn-r673] Changes since 19980908 1998-09-08 14:15:44 -05:00
th5s.c [svn-r952] Changes since 19981125 1998-11-25 12:21:21 -05:00
th5s.h5 [svn-r795] Changes since 19981026 1998-10-26 14:55:54 -05:00
tmeta.c [svn-r925] Changes since 19981116 1998-11-18 13:40:09 -05:00
trefer.c [svn-r957] Updated test for dataset region code, currently generating an assertion failure 1998-11-30 14:44:30 -05:00
tselect.c [svn-r925] Changes since 19981116 1998-11-18 13:40:09 -05:00
unlink.c [svn-r944] Changes since 19981120 1998-11-23 15:40:35 -05:00