search for: curr_runlin

Displaying 1 result from an estimated 1 matches for "curr_runlin".

Did you mean: curr_runline
2014 Feb 13
2
[LLVMdev] Bad test health
...valid def is_prefix(self, str): if str in self.ignored_str: return False for r in self.ignored_regs: if re.search(r, str): return False return True def scan_file(self, filename): used_prefixes = set() runlines = [] with open(filename) as f: curr_runline = '' for line in f.readlines(): match = self.prefix_re.search(line) if not match: continue prefix = match.group(1) or match.group(2) rest = match.group(3) if prefix == 'RUN': if rest.endswith("\\"):...