-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path_Binutils.py
50 lines (42 loc) · 2.47 KB
/
_Binutils.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
from fabric import Connection
# Analytics modules
from Container import Container
class Binutils(Container):
""" Binutils class """
def __init__(self, _image, _user, _pwd, _repeats):
Container.__init__(self, _image, _user, _pwd, _repeats)
# set variables
if self.offline:
self.path = self.omnirun("realpath 'repos/binutils'").stdout.strip()
else:
self.path = '/home/binutils'
self.source_path = '/home/binutils/binutils'
# set timeout (in seconds) for the test suite to run
self.timeout = 60
self.tsuite_path = ('binutils/testsuite', )
self.limit_changes_to = ('binutils', )
self.ignore_coverage_from = ('include/*' ,)
def compile(self):
""" compile Binutils """
with self.conn.cd(self.path):
result = self.conn.run("git rev-list b4d9e28e1d437c396461834f79be6cf0f2adc115 | grep $(git rev-parse HEAD)", warn=True)
if result.stdout.strip() != "":
# fix a bug that stops compilation for certain commits
self.conn.run("sed -i -e 's/@colophon/@@colophon/' -e 's/doc@cygnus.com/doc@@cygnus.com/' bfd/doc/bfd.texinfo", warn=True)
self.conn.run("sed -i -e 's/@colophon/@@colophon/' -e 's/doc@cygnus.com/doc@@cygnus.com/' ld/ld.texinfo",warn=True)
self.conn.run('sed -i -e "s/@itemx --output-mach=@var/@item --output-mach=@var/g" -e "s/@itemx --input-type=@var{type}/@item --input-type=@var{type}/g" -e "s/@itemx --output-type=@var{type}/@item --output-type=@var{type}/g" binutils/doc/binutils.texi', warn=True)
result = self.conn.run('./configure --disable-doc && make -j2 CFLAGS=\"-O0 -coverage -Wno-error\" LDFLAGS=\"-coverage\"', warn=True)
if result.failed:
self.compileError = True
def make_test(self):
""" run the test suite """
super(Binutils, self).make_test()
# if compile failed, skip this step
if not self.compileError and not self.emptyCommit:
print(f"Repeats: {self.repeats}")
with self.conn.cd(self.source_path):
for i in range(self.repeats):
result = self.conn.run("timeout " + str(self.timeout) + " make check CFLAGS=\"-coverage -O0\" LDFLAGS=\"-coverage\"", warn=True)
if result.failed:
self.maketestError = result.return_code
self.exit_status_list.append(result.return_code)