-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathfio.py
59 lines (46 loc) · 1.84 KB
/
fio.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import os
import platform
from autotest.client import test, utils
class fio(test.test):
"""
fio is an I/O tool mean for benchmark and stress/hardware verification.
@see: http://freecode.com/projects/fio
"""
version = 3
def initialize(self):
self.job.require_gcc()
def setup(self, tarball='fio-2.99.tar.bz2'):
"""
Compiles and installs fio.
@see: http://brick.kernel.dk/snaps/fio-2.0.5.tar.bz2
"""
tarball = utils.unmap_url(self.bindir, tarball, self.tmpdir)
utils.extract_tarball_to_dir(tarball, self.srcdir)
self.job.setup_dep(['libaio'])
ldflags = '-L' + self.autodir + '/deps/libaio/lib'
cflags = '-I' + self.autodir + '/deps/libaio/include'
var_ldflags = 'LDFLAGS="' + ldflags + '"'
var_cflags = 'CFLAGS="' + cflags + '"'
os.chdir(self.srcdir)
utils.system('%s %s make' % (var_ldflags, var_cflags))
def run_once(self, opts=None, job=None, user='root'):
log = os.path.join(self.resultsdir, 'fio-mixed.log')
_opts = '--output %s ' % (log)
if opts:
_opts += opts
arch = platform.machine()
if "ppc" in arch:
job_cfg_file = 'fio-mixed-ppc.job'
else:
job_cfg_file = 'fio-mixed.job'
if job is None:
job = os.path.join(self.bindir, job_cfg_file)
else:
if not os.path.isabs(job):
job = os.path.join(self.bindir, job)
_opts += ' %s' % (job)
os.chdir(self.srcdir)
##vars = 'TMPDIR=\"%s\" RESULTDIR=\"%s\"' % (self.tmpdir, self.resultsdir)
env_vars = 'LD_LIBRARY_PATH="' + self.autodir + '/deps/libaio/lib"'
##opts = '-m -o ' + self.resultsdir + '/fio-tio.log ' + self.srcdir + '/examples/tiobench-example'
utils.system(env_vars + ' ./fio ' + _opts)