mbligh | d7fb4a6 | 2006-10-01 00:57:53 +0000 | [diff] [blame^] | 1 | # Uncomment this line, and replace the device with something sensible |
2 | # for you ... | ||||
3 | # fs = job.filesystem('/dev/hda2', job.tmpdir) | ||||
4 | |||||
5 | for fstype in ('ext2', 'ext3'): | ||||
6 | fs.mkfs(fstype) | ||||
7 | fs.mount() | ||||
8 | try: | ||||
9 | job.runtest(fstype, 'fsx', job.tmpdir) | ||||
10 | finally: | ||||
11 | fs.unmount() | ||||
12 |