blob: a989350ca50051f08f98f9ec1ea1c9c659e49f67 [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
mblighb15f9632006-12-04 07:27:57 +00005for fstype in ('ext2', 'ext3', 'jfs', 'xfs', 'reiserfs'):
mblighd7fb4a62006-10-01 00:57:53 +00006 fs.mkfs(fstype)
7 fs.mount()
8 try:
mblighd016ecc2006-11-25 21:41:07 +00009 job.run_test('fsx', job.tmpdir, tag=fstype)
mbligh62107be2006-12-04 07:49:31 +000010 job.run_test('dbench', dir=job.tmpdir, tag=fstype)
mblighd7fb4a62006-10-01 00:57:53 +000011 finally:
12 fs.unmount()
13