diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2002-02-14 19:04:29 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2002-02-14 19:04:29 (GMT) |
commit | ff501d810d194b0ab0af4696ea39a621ec59da96 (patch) | |
tree | e9b3946d4e3066ba89d366e4a70dcb1786c3574e /perform/Makefile.in | |
parent | c562d4da062417dde7651d4211f6486c0063aca6 (diff) | |
download | hdf5-ff501d810d194b0ab0af4696ea39a621ec59da96.zip hdf5-ff501d810d194b0ab0af4696ea39a621ec59da96.tar.gz hdf5-ff501d810d194b0ab0af4696ea39a621ec59da96.tar.bz2 |
[svn-r4969] Description:
Remove perf and mpi-perf from the parallel test targets since their
functions are replaced by pio_perf.
Platforms tested:
modi4 and eirene, both parallel modes.
Diffstat (limited to 'perform/Makefile.in')
-rw-r--r-- | perform/Makefile.in | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/perform/Makefile.in b/perform/Makefile.in index c04fe32..78d36f2 100644 --- a/perform/Makefile.in +++ b/perform/Makefile.in @@ -1,6 +1,6 @@ ## HDF5 Library Performance Makefile(.in) ## -## Copyright (C) 2001 +## Copyright (C) 2001, 2002 ## National Center for Supercomputing Applications. ## All rights reserved. ## @@ -18,8 +18,7 @@ LIBTOOLS=../tools/lib/libh5tools.la ## These are the programs that `make all' or `make tests' will build and which ## `make check' will run. List them in the order they should be run. -##Temporary disable the compiling of pio_perf codes while I fix it. -TEST_PROGS_PARA=mpi-perf perf pio_perf +TEST_PROGS_PARA=pio_perf TEST_PROGS=iopipe chunk overhead ## These are the files that `make clean' (and derivatives) will remove from @@ -32,7 +31,7 @@ CLEAN=*.h5 *.raw *.dat x-gnuplot PIO_PERF_SRC=pio_perf.c pio_engine.c pio_timer.c PIO_PERF_OBJ=$(PIO_PERF_SRC:.c=.lo) -TEST_SRC_PARA=mpi-perf.c perf.c $(PIO_PERF_SRC) +TEST_SRC_PARA=$(PIO_PERF_SRC) TEST_SRC=iopipe.c chunk.c overhead.c $(TEST_SRC_PARA) TEST_OBJ=$(TEST_SRC:.c=.lo) |