-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathiosched_bugs.py
43 lines (37 loc) · 1.29 KB
/
iosched_bugs.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
import os
import time
import subprocess
from autotest.client import test
from autotest.client.shared import utils, error
class iosched_bugs(test.test):
version = 1
preserve_srcdir = True
def initialize(self):
self.job.require_gcc()
def setup(self):
os.chdir(self.srcdir)
utils.make()
def execute(self):
os.chdir(self.tmpdir)
(p1, _) = utils.run_bg('dd if=/dev/hda3 of=/dev/null')
time.sleep(60)
blah = os.path.join(self.tmpdir, 'blah')
dirty_bin = os.path.join(self.srcdir, 'dirty')
dirty_op = os.path.join(self.tmpdir, 'dirty')
utils.system('echo AA > ' + blah)
p2 = subprocess.Popen(dirty_bin + ' ' + blah + ' 1 > ' + dirty_op,
shell=True)
time.sleep(600)
if p2.poll() is None:
utils.nuke_subprocess(p1)
utils.nuke_subprocess(p2)
raise error.TestFail('Writes made no progress')
# Commenting out use of utils.run as there is a timeout bug
#
# try:
# utils.run(dirty_bin + ' ' + blah + '1 > ' + dirty_op, 900, False,
# None, None)
# except Exception:
# utils.nuke_subprocess(p1)
# raise error.TestFail('Writes made no progress')
utils.nuke_subprocess(p1)