Risk: Required
Visibility: Minimal
Second pass on clean up. 
I tested all test to make sure they at least run correctly, adding a few control
file stubs here and there.
Most of the fixes are import os fixes along with a few incorrect references

Signed-off-by: Scott Zawalski <scottz@google.com>



git-svn-id: http://test.kernel.org/svn/autotest/trunk@1607 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/tests/fsfuzzer/fsfuzzer.py b/client/tests/fsfuzzer/fsfuzzer.py
index 5abda51..07d2c09 100755
--- a/client/tests/fsfuzzer/fsfuzzer.py
+++ b/client/tests/fsfuzzer/fsfuzzer.py
@@ -1,5 +1,6 @@
+import os
 from autotest_lib.client.bin import test, autotest_utils
-from autotest_lib.client.bin import utils
+from autotest_lib.client.common_lib import utils
 
 
 class fsfuzzer(test.test):
@@ -7,7 +8,7 @@
 
 	# http://people.redhat.com/sgrubb/files/fsfuzzer-0.6.tar.gz
 	def setup(self, tarball = 'fsfuzzer-0.6.tar.gz'):
-		tarball = autotest_utils.unmap_url(self.bindir, tarball,
+		tarball = utils.unmap_url(self.bindir, tarball,
 		                                   self.tmpdir)
 		autotest_utils.extract_tarball_to_dir(tarball, self.srcdir)
 		os.chdir(self.srcdir)