summaryrefslogtreecommitdiffstats
path: root/testpar/Makefile.ascired
diff options
context:
space:
mode:
authorPaul Harten <pharten@ncsa.uiuc.edu>1998-08-03 20:22:23 (GMT)
committerPaul Harten <pharten@ncsa.uiuc.edu>1998-08-03 20:22:23 (GMT)
commit96106282bb72eb635f4da5bbb8a2e887b1bd7cb8 (patch)
tree4fd11ee0d40a99af0ad50076b2c040ef85b6dbbf /testpar/Makefile.ascired
parent6c6d0c90a277fc86578761c59ccfea7cbef5765e (diff)
downloadhdf5-96106282bb72eb635f4da5bbb8a2e887b1bd7cb8.zip
hdf5-96106282bb72eb635f4da5bbb8a2e887b1bd7cb8.tar.gz
hdf5-96106282bb72eb635f4da5bbb8a2e887b1bd7cb8.tar.bz2
[svn-r564] Purpose:
New feature Problem: Source code must be modified prior to compiling to allow full filenames to contain preferred user directories. Source must be recompiled everytime the preferred user directory changes. Solution: Instead, allow file prefixes preferred by user to be passed at runtime using the arguments "-f <prefix>". The "-f" to signal the next argument is to be a file prefix, and the "<prefix>" to be the actual prefix used. Platform tested: ASCI Red
Diffstat (limited to 'testpar/Makefile.ascired')
-rw-r--r--testpar/Makefile.ascired4
1 files changed, 2 insertions, 2 deletions
diff --git a/testpar/Makefile.ascired b/testpar/Makefile.ascired
index e599602..4bd51c3 100644
--- a/testpar/Makefile.ascired
+++ b/testpar/Makefile.ascired
@@ -16,7 +16,7 @@ MPIO_INC=-I$(ROMIO)/include
MPIO_LIBS=$(ROMIO)/lib/tflop/libmpio.a
RUN=yod -sz 8
-RUNSEQ=yod -sz 1
+TEST_FLAGS=-f "pfs:/pfs/multi/tmp_1/your_own"
LIBS = -lnoop_stubs
CC=cicc
@@ -67,7 +67,7 @@ progs: $(PROGS)
# Runs each test in order, passing $(TEST_FLAGS) to the program.
test: $(PROGS)
- $(RUN) testphdf5
+ $(RUN) testphdf5 $(TEST_FLAGS)
# Removes temporary files without removing the final target files. That is,
# remove things like object files but not libraries or executables.