mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-02-11 16:01:00 +08:00
[svn-r13527] Purpose:
Bug fix. Description: When it reads the allhostfile, it does eliminate comments or blank lines completely, thus it continues to use ssh/rsh even when only the local host is tested. Solution: Changed the sed scripts to eliminate comments and blank lines. Tested: Cobalt by running bin/runtest. Since this is not really library source, the three platforms test does not apply.
This commit is contained in:
parent
ac293ae20b
commit
5fe2a249cf
@ -700,7 +700,7 @@ sleep 10
|
||||
#################################
|
||||
if [ "$TESTHOST" = -all ]; then
|
||||
if [ -f $ALLHOSTSFILE ]; then
|
||||
TESTHOST=`sed -e s/#.*// $ALLHOSTSFILE`
|
||||
TESTHOST=`sed -e '/^#/d;/^ *$/d' $ALLHOSTSFILE`
|
||||
else
|
||||
PRINT "could not access the all-hosts-file ($ALLHOSTSFILE)"
|
||||
USAGE
|
||||
|
Loading…
Reference in New Issue
Block a user