D | findRegressions-nightly.py | 7 testDirName = 'llvm-test' 8 test = ['compile', 'llc', 'jit', 'cbe'] variable 9 exectime = ['llc-time', 'jit-time', 'cbe-time',] 10 comptime = ['llc', 'jit-comptime', 'compile'] 21 r = re.findall(r'TEST-(PASS|FAIL|RESULT.*?):\s+(.*?)\s+(.*?)\r*\n', d) 23 test = {} 39 if fname not in test : 40 test[fname] = {} 42 for k in test: 43 test[fname][k] = 'NA' [all …]
|