Ignore empty lines and valgrind output.
(self, str)
| 47 | self.parallel = True |
| 48 | |
| 49 | def IgnoreLine(self, str): |
| 50 | """Ignore empty lines and valgrind output.""" |
| 51 | if not str.strip(): return True |
| 52 | else: return str.startswith('==') or str.startswith('**') |
| 53 | |
| 54 | def IsFailureOutput(self, output): |
| 55 | f = open(self.expected) |