File disktest.patch of Package autotest
--- tests/disktest/disktest.py +++ tests/disktest/disktest.py @@ -24,7 +24,7 @@ return(p.pid) - def execute(self, disks, gigabytes = 100, chunk_mb = memtotal()/1024): + def execute(self, disks, gigabytes = 10, chunk_mb = memtotal()/1024): os.chdir(self.srcdir) self.chunk_mb = chunk_mb @@ -47,4 +47,7 @@ errors.append(retval) if errors: raise "Errors from children: %s" % errors - + # clean up + for disk in disks: + cmd = "rm -r %s/testfile*" % (disk) + system(cmd)