| 319 | pass |
| 320 | |
| 321 | def GetAnnotationInfo(self, test, output): |
| 322 | traceback = output.stdout + output.stderr |
| 323 | find_full_path = re.search(r' +at .*\(.*%s:([0-9]+):([0-9]+)' % test.file, traceback) |
| 324 | col = line = 0 |
| 325 | if find_full_path: |
| 326 | line, col = map(int, find_full_path.groups()) |
| 327 | root_path = abspath(join(dirname(__file__), '../')) + os.sep |
| 328 | filename = test.file.replace(root_path, "") |
| 329 | return filename, line, col |
| 330 | |
| 331 | def PrintFailureOutput(self, failure): |
| 332 | output = self.GetFailureOutput(failure) |