diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2011-01-12 20:39:47 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2011-01-12 20:39:47 (GMT) |
commit | 5f6a465ae7a9ccee58a64d24ead0681c741bc9cd (patch) | |
tree | 5311b33494f10f7590e75b270ff47a056f32c2bd /testpar | |
parent | 2f54a4ba53f86369d912dd73f3ccfb9055aa36ca (diff) | |
download | hdf5-5f6a465ae7a9ccee58a64d24ead0681c741bc9cd.zip hdf5-5f6a465ae7a9ccee58a64d24ead0681c741bc9cd.tar.gz hdf5-5f6a465ae7a9ccee58a64d24ead0681c741bc9cd.tar.bz2 |
[svn-r19947] Bug fix: testph5.in failed to run the 't_shapesame -p' by claiming it could
not find t_shapesame in daily test. Turned out the mpiexec launcher is
working like real shell and the daily test signon (hdftest) does not have
"." in its $PATH. So, it could not automatically look for executables in
the current directory.
Solution:
Change the executable to an explicit ./t_shapesame. Now mpiexec can "find"
it.
Tested by hand in Amani.
Diffstat (limited to 'testpar')
-rw-r--r-- | testpar/testph5.sh.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/testpar/testph5.sh.in b/testpar/testph5.sh.in index b6e0cd4..f78cfac 100644 --- a/testpar/testph5.sh.in +++ b/testpar/testph5.sh.in @@ -62,9 +62,8 @@ TOOLTEST -p # Temporary patch: # Run t_shapesame this way. Need more permanent solution. -TEST_APP_BIN=t_shapesame -echo $RUNPARALLEL t_shapesame -p -eval $RUNPARALLEL t_shapesame -p +echo $RUNPARALLEL ./t_shapesame -p +eval $RUNPARALLEL ./t_shapesame -p # Check if the command failed and increment nerrors if so. if test $? -ne 0 ; then |