blob: 594e068512627b0d487a36f7270f82d81b27d0fb [file] [log] [blame]
mblighd7fb4a62006-10-01 00:57:53 +00001# Uncomment this line, and replace the device with something sensible
2# for you ...
3# fs = job.filesystem('/dev/hda2', job.tmpdir)
4
5for fstype in ('ext2', 'ext3'):
6 fs.mkfs(fstype)
7 fs.mount()
8 try:
mblighd016ecc2006-11-25 21:41:07 +00009 job.run_test('fsx', job.tmpdir, tag=fstype)
mblighd7fb4a62006-10-01 00:57:53 +000010 finally:
11 fs.unmount()
12