From e884d06060c4b41abefe6746d772c20b84d84683 Mon Sep 17 00:00:00 2001 From: Albert Cheng Date: Wed, 12 Jan 2011 15:39:04 -0500 Subject: [svn-r19946] 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. --- testpar/testph5.sh.in | 5 ++--- 1 file 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 -- cgit v0.12