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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580
|
#!/usr/bin/env python
import os, sys
import glob, re
import subprocess as sp
class TestBase:
supported_lang = {
'C': { 'cc': 'gcc', 'flags': 'CFLAGS', 'ext': '.c' },
'C++': { 'cc': 'g++', 'flags': 'CXXFLAGS', 'ext': '.cpp' },
}
TEST_SUCCESS = 0
TEST_UNSUPP_LANG = -1
TEST_BUILD_FAIL = -2
TEST_ABNORMAL_EXIT = -3
TEST_TIME_OUT = -4
TEST_DIFF_RESULT = -5
TEST_NONZERO_RETURN = -6
TEST_SKIP = -7
TEST_SUCCESS_FIXED = -8
objdir = 'objdir' in os.environ and os.environ['objdir'] or '..'
uftrace_cmd = objdir + '/uftrace --no-pager --no-event -L' + objdir
default_cflags = ['-fno-inline', '-fno-builtin', '-fno-ipa-cp',
'-fno-omit-frame-pointer', '-D_FORTIFY_SOURCE=0']
def __init__(self, name, result, lang='C', cflags='', ldflags='', sort='task'):
self.name = name
self.result = result
self.cflags = cflags
self.ldflags = ldflags
self.lang = lang
self.sort_method = sort
def set_debug(self, dbg):
self.debug = dbg
def pr_debug(self, msg):
if self.debug:
print(msg)
def build_it(self, build_cmd):
try:
p = sp.Popen(build_cmd.split(), stderr=sp.PIPE)
if p.wait() != 0:
self.pr_debug(p.communicate()[1].decode(errors='ignore'))
return TestBase.TEST_BUILD_FAIL
return TestBase.TEST_SUCCESS
except OSError as e:
self.pr_debug(e.strerror)
return TestBase.TEST_BUILD_FAIL
except:
return TestBase.TEST_BUILD_FAIL
def build(self, name, cflags='', ldflags=''):
if self.lang not in TestBase.supported_lang:
pr_debug("%s: unsupported language: %s" % (name, self.lang))
return TestBase.TEST_UNSUPP_LANG
lang = TestBase.supported_lang[self.lang]
prog = 't-' + name
src = 's-' + name + lang['ext']
build_cflags = ' '.join(TestBase.default_cflags + [self.cflags, cflags, \
os.getenv(lang['flags'], '')])
build_ldflags = ' '.join([self.ldflags, ldflags, \
os.getenv('LDFLAGS', '')])
build_cmd = '%s -o %s %s %s %s' % \
(lang['cc'], prog, build_cflags, src, build_ldflags)
self.pr_debug("build command: %s" % build_cmd)
return self.build_it(build_cmd)
def build_libabc(self, cflags='', ldflags=''):
lang = TestBase.supported_lang['C']
build_cflags = ' '.join(TestBase.default_cflags + [self.cflags, cflags, \
os.getenv(lang['flags'], '')])
build_ldflags = ' '.join([self.ldflags, ldflags, \
os.getenv('LDFLAGS', '')])
lib_cflags = build_cflags + ' -shared -fPIC'
# build libabc_test_lib.so library
build_cmd = '%s -o libabc_test_lib.so %s s-lib.c %s' % \
(lang['cc'], lib_cflags, build_ldflags)
self.pr_debug("build command for library: %s" % build_cmd)
return self.build_it(build_cmd)
def build_libfoo(self, name, cflags='', ldflags=''):
lang = TestBase.supported_lang['C++']
build_cflags = ' '.join(TestBase.default_cflags + [self.cflags, cflags, \
os.getenv(lang['flags'], '')])
build_ldflags = ' '.join([self.ldflags, ldflags, \
os.getenv('LDFLAGS', '')])
lib_cflags = build_cflags + ' -shared -fPIC'
# build lib{foo}.so library
build_cmd = '%s -o lib%s.so %s s-lib%s%s %s' % \
(lang['cc'], name, lib_cflags, name, lang['ext'], build_ldflags)
self.pr_debug("build command for library: %s" % build_cmd)
return self.build_it(build_cmd)
def build_libmain(self, exename, srcname, libs, cflags='', ldflags=''):
if self.lang not in TestBase.supported_lang:
self.pr_debug("%s: unsupported language: %s" % (self.name, self.lang))
return TestBase.TEST_UNSUPP_LANG
lang = TestBase.supported_lang[self.lang]
prog = 't-' + exename
build_cflags = ' '.join(TestBase.default_cflags +
[self.cflags, cflags, os.getenv(lang['flags'], '')])
build_ldflags = ' '.join([self.ldflags, ldflags, os.getenv('LDFLAGS', '')])
exe_ldflags = build_ldflags + ' -Wl,-rpath,$ORIGIN -L. '
for lib in libs:
exe_ldflags += ' -l' + lib[3:-3]
build_cmd = '%s -o %s %s %s %s' % (lang['cc'], prog, build_cflags, srcname, exe_ldflags)
self.pr_debug("build command for executable: %s" % build_cmd)
return self.build_it(build_cmd)
def runcmd(self):
""" This function returns (shell) command that runs the test.
A test case can extend this to setup a complex configuration. """
return '%s %s' % (TestBase.uftrace_cmd, 't-' + self.name)
def task_sort(self, output, ignore_children=False):
""" This function post-processes output of the test to be compared .
It ignores blank and comment (#) lines and remaining functions. """
pids = {}
order = 1
before_main = True
for ln in output.split('\n'):
if ln.find(' | main()') > 0:
before_main = False
if before_main:
continue
# ignore result of remaining functions which follows a blank line
if ln.strip() == '':
break;
pid_patt = re.compile('[^[]*\[ *(\d+)\] |')
m = pid_patt.match(ln)
try:
pid = int(m.group(1))
except:
continue
func = ln.split('|', 1)[-1]
if pid not in pids:
pids[pid] = { 'order': order }
pids[pid]['result'] = []
order += 1
pids[pid]['result'].append(func)
result = ''
pid_list = sorted(list(pids), key=lambda p: pids[p]['order'])
try:
if ignore_children:
result += '\n'.join(pids[pid_list[0]]['result'])
else:
for p in pid_list:
result += '\n'.join(pids[p]['result']) + '\n'
result = result.strip()
except:
pass # this leads to a failure with 'NG'
return result
def simple_sort(self, output, ignored):
""" This function post-processes output of the test to be compared .
It ignores blank and comment (#) lines and remaining functions. """
result = []
for ln in output.split('\n'):
# ignore blank lines and comments
if ln.strip() == '' or ln.startswith('#'):
continue
func = ln.split('|', 1)[-1]
result.append(func)
return '\n'.join(result)
def report_sort(self, output, ignored):
""" This function post-processes output of the test to be compared .
It ignores blank and comment (#) lines and remaining functions. """
result = []
for ln in output.split('\n'):
if ln.strip() == '':
continue
line = ln.split()
if line[0] == 'Total':
continue
if line[0].startswith('='):
continue
# A report line consists of following data
# [0] [1] [2] [3] [4] [5]
# total_time unit self_time unit called function
try:
if line[5].startswith('__'):
continue
except:
pass
result.append('%s %s' % (line[4], line[5]))
return '\n'.join(result)
def graph_sort(self, output, ignored):
""" This function post-processes output of the test to be compared.
It ignores blank and comment (#) lines and header lines. """
result = []
mode = 0
for ln in output.split('\n'):
if ln.strip() == '' or ln.startswith('#'):
continue
# A graph result consists of backtrace and calling functions
if ln.startswith('=============== BACKTRACE ==============='):
mode = 1
continue
if ln.startswith('========== FUNCTION CALL GRAPH =========='):
mode = 2
continue
if mode == 1:
if ln.startswith(' backtrace #'):
result.append(ln.split(',')[0]) # remove time part
if ln.startswith(' ['):
result.append(ln.split('(')[0]) # remove '(addr)' part
if mode == 2:
if " : " in ln:
result.append(ln.split(':')[1]) # remove time part
else:
result.append(ln)
return '\n'.join(result)
def dump_sort(self, output, ignored):
""" This function post-processes output of the test to be compared .
It ignores blank and comment (#) lines and remaining functions. """
# A (raw) dump result consists of following data
# <timestamp> <tid>: [<type>] <func>(<addr>) depth: <N>
mode = 1
patt = re.compile(r'[^[]*(?P<type>\[(entry|exit )\]) (?P<func>[_a-z0-9]*)\([0-9a-f]+\) (?P<depth>.*)')
result = []
for ln in output.split('\n'):
if ln.startswith('uftrace'):
#result.append(ln)
pass
else:
m = patt.match(ln)
if m is None:
continue
# ignore __monstartup and __cxa_atexit
if m.group('func').startswith('__'):
continue
result.append(patt.sub(r'\g<type> \g<depth> \g<func>', ln))
return '\n'.join(result)
def chrome_sort(self, output, ignored):
""" This function post-processes output of the test to be compared .
It ignores blank and comment (#) lines and remaining functions. """
import json
# A chrome dump results consists of following JSON object:
# {"ts": <timestamp>, "ph": <type>, "pid": <number>, "name": <func>}
result = []
try:
o = json.loads(output)
except:
return ''
for ln in o['traceEvents']:
if ln['name'].startswith('__'):
continue
if ln['ph'] == "M":
if ln['name'] == "process_name" or ln['name'] == "thread_name":
args = ln['args']
name = args['name']
m = re.search(r'\[\d+\] (.*)', args['name'])
if m:
name = m.group(1)
result.append("%s %s %s" % (ln['ph'], ln['name'], name))
else:
result.append("%s %s" % (ln['ph'], ln['name']))
return '\n'.join(result)
def sort(self, output, ignore_children=False):
if not hasattr(TestBase, self.sort_method + '_sort'):
print('cannot find the sort function: %s' % self.sort_method)
return '' # this leads to a failure with 'NG'
func = TestBase.__dict__[self.sort_method + '_sort']
if callable(func):
return func(self, output, ignore_children)
else:
return '' # this leads to a failure with 'NG'
def pre(self):
"""This function is called before running a testcase"""
return TestBase.TEST_SUCCESS
def post(self, result):
"""This function is called after running a testcase"""
return result
def fixup(self, cflags, result):
"""This function is called when result is different to expected.
But if we know some known difference on some optimization level,
apply it and re-test with the modified result."""
return result
def check_dependency(self, item):
import os.path
return os.path.exists('../check-deps/' + item)
def check_perf_paranoid(self):
try:
f = open('/proc/sys/kernel/perf_event_paranoid')
v = int(f.readline())
f.close()
if v == 3:
return False
except:
pass
return True
def run(self, name, cflags, diff, timeout):
ret = TestBase.TEST_SUCCESS
test_cmd = self.runcmd()
self.pr_debug("test command: %s" % test_cmd)
p = sp.Popen(test_cmd, shell=True, stdout=sp.PIPE, stderr=sp.PIPE)
class Timeout(Exception):
pass
def timeout_handler(sig, frame):
try:
p.kill()
finally:
raise Timeout
import signal
signal.signal(signal.SIGALRM, timeout_handler)
signal.alarm(timeout)
timed_out = False
try:
result_origin = p.communicate()[0].decode(errors='ignore')
except Timeout:
result_origin = ''
timed_out = True
signal.alarm(0)
result_expect = self.sort(self.result)
result_tested = self.sort(result_origin) # for python3
ret = p.wait()
if ret < 0:
if timed_out:
return TestBase.TEST_TIME_OUT
else:
return TestBase.TEST_ABNORMAL_EXIT
if ret > 0:
if ret == 2:
return TestBase.TEST_ABNORMAL_EXIT
return TestBase.TEST_NONZERO_RETURN
self.pr_debug("=========== %s ===========\n%s" % ("original", result_origin))
self.pr_debug("=========== %s ===========\n%s" % (" result ", result_tested))
self.pr_debug("=========== %s ===========\n%s" % ("expected", result_expect))
if result_expect.strip() == '':
return TestBase.TEST_DIFF_RESULT
if result_expect != result_tested:
result_expect = self.sort(self.fixup(cflags, self.result))
ret = TestBase.TEST_SUCCESS_FIXED
if result_expect != result_tested:
if diff:
f = open('expect', 'w')
f.write(result_expect + '\n')
f.close()
f = open('result', 'w')
f.write(result_tested + '\n')
f.close()
print("%s: diff result of %s" % (name, cflags))
try:
p = sp.Popen(['colordiff', '-U1', 'expect', 'result'], stdout=sp.PIPE)
except:
p = sp.Popen(['diff', '-U1', 'expect', 'result'], stdout=sp.PIPE)
print(p.communicate()[0].decode(errors='ignore'))
os.remove('expect')
os.remove('result')
return TestBase.TEST_DIFF_RESULT
return ret
RED = '\033[1;31m'
GREEN = '\033[1;32m'
YELLOW = '\033[1;33m'
NORMAL = '\033[0m'
colored_result = {
TestBase.TEST_SUCCESS: GREEN + 'OK' + NORMAL,
TestBase.TEST_UNSUPP_LANG: YELLOW + 'LA' + NORMAL,
TestBase.TEST_BUILD_FAIL: YELLOW + 'BI' + NORMAL,
TestBase.TEST_ABNORMAL_EXIT: RED + 'SG' + NORMAL,
TestBase.TEST_TIME_OUT: RED + 'TM' + NORMAL,
TestBase.TEST_DIFF_RESULT: RED + 'NG' + NORMAL,
TestBase.TEST_NONZERO_RETURN: RED + 'NZ' + NORMAL,
TestBase.TEST_SKIP: YELLOW + 'SK' + NORMAL,
TestBase.TEST_SUCCESS_FIXED: YELLOW + 'OK' + NORMAL,
}
text_result = {
TestBase.TEST_SUCCESS: 'OK',
TestBase.TEST_UNSUPP_LANG: 'LA',
TestBase.TEST_BUILD_FAIL: 'BI',
TestBase.TEST_ABNORMAL_EXIT: 'SG',
TestBase.TEST_TIME_OUT: 'TM',
TestBase.TEST_DIFF_RESULT: 'NG',
TestBase.TEST_NONZERO_RETURN: 'NZ',
TestBase.TEST_SKIP: 'SK',
TestBase.TEST_SUCCESS_FIXED: 'OK',
}
result_string = {
TestBase.TEST_SUCCESS: 'Test succeeded',
TestBase.TEST_UNSUPP_LANG: 'Unsupported Language',
TestBase.TEST_BUILD_FAIL: 'Build failed',
TestBase.TEST_ABNORMAL_EXIT: 'Abnormal exit by signal',
TestBase.TEST_TIME_OUT: 'Test ran too long',
TestBase.TEST_DIFF_RESULT: 'Different test result',
TestBase.TEST_NONZERO_RETURN: 'Non-zero return value',
TestBase.TEST_SKIP: 'Skipped',
TestBase.TEST_SUCCESS_FIXED: 'Test succeeded (with some fixup)',
}
def run_single_case(case, flags, opts, arg):
result = []
# for python3
_locals = {}
exec("import %s; tc = %s.TestCase()" % (case, case), globals(), _locals)
tc = _locals['tc']
tc.set_debug(arg.debug)
for flag in flags:
for opt in opts:
cflags = ' '.join(["-" + flag, "-" + opt])
ret = tc.build(tc.name, cflags)
if ret == TestBase.TEST_SUCCESS:
ret = tc.pre()
if ret == TestBase.TEST_SUCCESS:
ret = tc.run(case, cflags, arg.diff, int(arg.timeout))
ret = tc.post(ret)
result.append(ret)
return result
def print_test_result(case, result, color):
if sys.stdout.isatty() and color:
result_list = [colored_result[r] for r in result]
else:
result_list = [text_result[r] for r in result]
output = case[1:4]
output += ' %-20s' % case[5:] + ': ' + ' '.join(result_list) + '\n'
sys.stdout.write(output)
def parse_argument():
import argparse
parser = argparse.ArgumentParser()
parser.add_argument("-f", "--profile-flags", dest='flags',
default="pg finstrument-functions",
help="comma separated list of compiler profiling flags")
parser.add_argument("-O", "--optimize-levels", dest='opts', default="0123s",
help="compiler optimization levels")
parser.add_argument("case", nargs='?', default="all",
help="test case: 'all' or test number or (partial) name")
parser.add_argument("-p", "--profile-pg", dest='pg_flag', action='store_true',
help="profiling with -pg option")
parser.add_argument("-i", "--instrument-functions", dest='if_flag', action='store_true',
help="profiling with -finstrument-functions option")
parser.add_argument("-d", "--diff", dest='diff', action='store_true',
help="show diff result if not matched")
parser.add_argument("-v", "--verbose", dest='debug', action='store_true',
help="show internal command and result for debugging")
parser.add_argument("-n", "--no-color", dest='color', action='store_false',
help="suppress color in the output")
parser.add_argument("-t", "--timeout", dest='timeout', default=5,
help="fail test if it runs more than TIMEOUT seconds")
return parser.parse_args()
if __name__ == "__main__":
# prevent to create .pyc files (it makes some tests failed)
os.environ["PYTHONDONTWRITEBYTECODE"] = "1"
arg = parse_argument()
if arg.case == 'all':
testcases = glob.glob('t???_*.py')
else:
try:
testcases = glob.glob('t*' + arg.case + '*.py')
finally:
if len(testcases) == 0:
print("cannot find testcase for : %s" % arg.case)
sys.exit(0)
opts = ' '.join(sorted(['O'+o for o in arg.opts]))
optslen = len(opts);
header1 = '%-24s ' % 'Test case'
header2 = '-' * 24 + ':'
empty = ' '
if arg.pg_flag:
flags = ['pg']
elif arg.if_flag:
flags = ['finstrument-functions']
else:
flags = arg.flags.split()
for flag in flags:
# align with optimization flags
header1 += ' ' + flag[:optslen] + empty[len(flag):optslen]
header2 += ' ' + opts
print(header1)
print(header2)
total = 0
res = []
res.append(TestBase.TEST_SUCCESS)
res.append(TestBase.TEST_SUCCESS_FIXED)
res.append(TestBase.TEST_DIFF_RESULT)
res.append(TestBase.TEST_NONZERO_RETURN)
res.append(TestBase.TEST_ABNORMAL_EXIT)
res.append(TestBase.TEST_TIME_OUT)
res.append(TestBase.TEST_BUILD_FAIL)
res.append(TestBase.TEST_UNSUPP_LANG)
res.append(TestBase.TEST_SKIP)
stats = dict.fromkeys(res, 0)
for tc in sorted(testcases):
name = tc[:-3] # remove '.py'
result = run_single_case(name, flags, opts.split(), arg)
print_test_result(name, result, arg.color)
for r in result:
stats[r] += 1
total += 1
success = stats[TestBase.TEST_SUCCESS] + stats[TestBase.TEST_SUCCESS_FIXED]
percent = 100.0 * success / total
print("")
print("runtime test stats")
print("====================")
print("total %5d Tests executed (success: %.2f%%)" % (total, percent))
for r in res:
if sys.stdout.isatty() and arg.color:
result = colored_result[r]
else:
result = text_result[r]
print(" %s: %5d %s" % (result, stats[r], result_string[r]))
|