diff options
Diffstat (limited to 'client/tests/fsfuzzer/fsfuzzer.py')
-rwxr-xr-x | client/tests/fsfuzzer/fsfuzzer.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/client/tests/fsfuzzer/fsfuzzer.py b/client/tests/fsfuzzer/fsfuzzer.py index 050f4fcb..d58e514d 100755 --- a/client/tests/fsfuzzer/fsfuzzer.py +++ b/client/tests/fsfuzzer/fsfuzzer.py @@ -6,6 +6,10 @@ from autotest_lib.client.common_lib import utils class fsfuzzer(test.test): version = 1 + def initialize(self): + self.job.require_gcc() + + # http://people.redhat.com/sgrubb/files/fsfuzzer-0.6.tar.gz def setup(self, tarball = 'fsfuzzer-0.6.tar.gz'): tarball = utils.unmap_url(self.bindir, tarball, self.tmpdir) @@ -14,6 +18,7 @@ class fsfuzzer(test.test): utils.system('make') + def execute(self, iterations = 1, fstype = 'iso9660'): profilers = self.job.profilers args = fstype + ' 1' |