Show More
@@ -635,6 +635,8 b' class Test(object):' | |||
|
635 | 635 | else: |
|
636 | 636 | result.skipped = True |
|
637 | 637 | return self.skip(missing[-1]) |
|
638 | elif ret == 'timeout': | |
|
639 | return self.fail('timed out', ret) | |
|
638 | 640 | |
|
639 | 641 | def _run(self, testtmp, replacements, env): |
|
640 | 642 | raise NotImplemented('Subclasses must implement Test.run()') |
@@ -1143,8 +1145,6 b' def runone(options, test, count):' | |||
|
1143 | 1145 | |
|
1144 | 1146 | if result: |
|
1145 | 1147 | pass |
|
1146 | elif ret == 'timeout': | |
|
1147 | result = t.fail("timed out", ret) | |
|
1148 | 1148 | elif out != refout: |
|
1149 | 1149 | info = {} |
|
1150 | 1150 | if not options.nodiff: |
General Comments 0
You need to be logged in to leave comments.
Login now