Ignore empty lines and valgrind output.
(self, str_arg)
| 52 | self.parallel = True |
| 53 | |
| 54 | def IgnoreLine(self, str_arg): |
| 55 | """Ignore empty lines and valgrind output.""" |
| 56 | if not str_arg.strip(): return True |
| 57 | else: return str_arg.startswith('==') or str_arg.startswith('**') |
| 58 | |
| 59 | def IsFailureOutput(self, output): |
| 60 | f = open(self.expected) |