diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2005-02-17 17:05:59 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2005-02-17 17:05:59 (GMT) |
commit | c3d2710b7d54f37892c76f0e30b71856054253c1 (patch) | |
tree | 8f307219fb45c292089869b33882780eb9814d1d | |
parent | 4d64b08030c57b74a9b5cd49ef57f6b929e7da55 (diff) | |
download | hdf5-c3d2710b7d54f37892c76f0e30b71856054253c1.zip hdf5-c3d2710b7d54f37892c76f0e30b71856054253c1.tar.gz hdf5-c3d2710b7d54f37892c76f0e30b71856054253c1.tar.bz2 |
[svn-r10031] Purpose:
Improvement.
Description:
Added a command to dump all environment variables at the
beginning of the snapshot test.
Platforms tested:
Attempted to test in eirene but aborted it after seeing the
dumping because it was doing things to the current/ of daily
test directory. *arg!*
-rwxr-xr-x | bin/snapshot | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/bin/snapshot b/bin/snapshot index eee8bbc..ce06800 100755 --- a/bin/snapshot +++ b/bin/snapshot @@ -44,9 +44,10 @@ uname -a # setup exit banner message trap EXIT_BANNER 0 -# The path isn't properly initialized on hawkwind -- /usr/local/bin is -# either missing or is after /usr/bin when it should be before. -PATH="/usr/local/bin:$PATH" +# Dump environment variables +echo ===Dumping environment variables=== +printenv | sort +echo ===Done Dumping environment variables=== # Where are the snapshots stored? ARCHIVES_default=/afs/ncsa/ftp/HDF/pub/outgoing/hdf5/snapshots |