diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2005-02-17 17:05:56 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2005-02-17 17:05:56 (GMT) |
commit | 4c9881c24cb1a2ca13455a69d492a6cd78b58bca (patch) | |
tree | 4d3bc2a9015b963600a8bc661a350bd1ad86ccea | |
parent | ad9668e7b893032594e928ad9a2978adafb6ec9d (diff) | |
download | hdf5-4c9881c24cb1a2ca13455a69d492a6cd78b58bca.zip hdf5-4c9881c24cb1a2ca13455a69d492a6cd78b58bca.tar.gz hdf5-4c9881c24cb1a2ca13455a69d492a6cd78b58bca.tar.bz2 |
[svn-r10030] 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 |