disktest.py should look how much space is available on the target,
there is not always 100GB free :)
From: Patrick Kirsch <[email protected]>
Signed-off-by: Martin J. Bligh <[email protected]>
Modified by mbligh
git-svn-id: http://test.kernel.org/svn/autotest/trunk@795 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/bin/autotest_utils.py b/client/bin/autotest_utils.py
index bedd583..0c4390c 100755
--- a/client/bin/autotest_utils.py
+++ b/client/bin/autotest_utils.py
@@ -1,7 +1,7 @@
"""Convenience functions for use by tests or whomever.
"""
-import os,os.path,shutil,urllib,sys,signal,commands,pickle,glob
+import os,os.path,shutil,urllib,sys,signal,commands,pickle,glob,statvfs
from error import *
import re,string
@@ -546,3 +546,9 @@
raise 'Invalid value %s for key %s' % (value, key)
keyval.write('%s=%s\n' % (key, value))
keyval.close()
+
+
+def freespace(path):
+ # Find free space available in bytes
+ s = os.statvfs(path)
+ return s[statvfs.F_BAVAIL] * long(s[statvfs.F_BSIZE])