diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2001-01-31 06:03:28 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2001-01-31 06:03:28 (GMT) |
commit | 11efb889c6847da265daf34624b6b13667ad7f42 (patch) | |
tree | 765bc38aac5a9c4bd3492e653ee05ff640375432 /bin/runtest | |
parent | c6da08f99452b1e945f8d0c6fb50b549104fdb4f (diff) | |
download | hdf5-11efb889c6847da265daf34624b6b13667ad7f42.zip hdf5-11efb889c6847da265daf34624b6b13667ad7f42.tar.gz hdf5-11efb889c6847da265daf34624b6b13667ad7f42.tar.bz2 |
[svn-r3336] Purpose:
Simple twist
Description:
snapshot used to just use whatever `hostname` returns. Often it
is the fully qualified name but sometimes just hostname without the
domain part. Inconsistent.
Solution:
Chopped off any domain part and use just the host name.
Use the 'cut' command rather than the sed with ncsa.uiuc.edu hardcoded.
Applied that to runtest too.
Platforms tested:
Should work. Will find out if the daily tests still work.
Diffstat (limited to 'bin/runtest')
-rwxr-xr-x | bin/runtest | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/runtest b/bin/runtest index 8f90e51..42c8ac1 100755 --- a/bin/runtest +++ b/bin/runtest @@ -29,7 +29,7 @@ TOWHOM=${DEBUGMODE:+acheng} TOWHOM=${TOWHOM:-hdf5lib@ncsa.uiuc.edu} # Setup -HOSTNAME=`hostname | sed -e s/.ncsa.uiuc.edu//` +HOSTNAME=`hostname | cut -f1 -d.` # no domain part H5DIR=$HOME/HDF5/v_1_3/hdf5 TODAY=`date +%y%m%d` H5VER= # default to current CVS version |