diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2005-10-16 22:52:34 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2005-10-16 22:52:34 (GMT) |
commit | d0bb35ceb3a92d6635b953120080983bcb5d45dc (patch) | |
tree | 213e3999857ba1fa04ea6f7c454545a7bb261edf | |
parent | 6f85844982a45c71e7a8a3bbcc3600e11030c3df (diff) | |
download | hdf5-d0bb35ceb3a92d6635b953120080983bcb5d45dc.zip hdf5-d0bb35ceb3a92d6635b953120080983bcb5d45dc.tar.gz hdf5-d0bb35ceb3a92d6635b953120080983bcb5d45dc.tar.bz2 |
[svn-r11569] Purpose:
Improvement.
Description:
The df command sometimes hangs because of file system problem.
Solution:
Run the df command as background process and wait for it 10 seconds
to finish, then just continues.
Platforms tested:
Should work. Daily test will test it.
-rwxr-xr-x | bin/runtest | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bin/runtest b/bin/runtest index 437e896..f502a27 100755 --- a/bin/runtest +++ b/bin/runtest @@ -676,8 +676,11 @@ fi ################################# # Show some host status numbers ################################# -df +# df sometimes hangs due to file system problems. Invoke it as background +# process and give it 10 seconds to finish. If it hangs, just continue. uptime +df & +sleep 10 ################################# # Setup test host(s) |