blob: 2e94e0581666401b2311bf298e51620028366cc1 [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
mbligha7c34472006-12-04 16:32:25 +00005# dbench 1024, ltp, 1024-byte blocksize, a few other things. Lots of fscking.
6# I haven't tested nobh mode yet,
7# and I have yet to point run-bash-shared-mapping at it.
8# (different mount options for ext3)
9
mblighb15f9632006-12-04 07:27:57 +000010for fstype in ('ext2', 'ext3', 'jfs', 'xfs', 'reiserfs'):
mblighd7fb4a62006-10-01 00:57:53 +000011 fs.mkfs(fstype)
12 fs.mount()
13 try:
mblighd016ecc2006-11-25 21:41:07 +000014 job.run_test('fsx', job.tmpdir, tag=fstype)
mbligh62107be2006-12-04 07:49:31 +000015 job.run_test('dbench', dir=job.tmpdir, tag=fstype)
mblighd7fb4a62006-10-01 00:57:53 +000016 finally:
17 fs.unmount()
18