| Index: Tools/Scripts/webkitpy/layout_tests/port/test.py
|
| diff --git a/Tools/Scripts/webkitpy/layout_tests/port/test.py b/Tools/Scripts/webkitpy/layout_tests/port/test.py
|
| index 5b54fc4ad4b27a74b4e15bf767e75cfbe68d3a0a..0a44b47b6a991d924c1a17e1a5bd4ee3db945990 100644
|
| --- a/Tools/Scripts/webkitpy/layout_tests/port/test.py
|
| +++ b/Tools/Scripts/webkitpy/layout_tests/port/test.py
|
| @@ -643,6 +643,12 @@ class TestDriver(Driver):
|
| crash_logs = CrashLogs(self._port.host)
|
| crash_log = crash_logs.find_newest_log(crashed_process_name, None) or ''
|
|
|
| + if 'crash-reftest.html' in test_name:
|
| + crashed_process_name = self._port.driver_name()
|
| + crashed_pid = 3
|
| + crash = True
|
| + crash_log = 'reftest crash log'
|
| +
|
| if stop_when_done:
|
| self.stop()
|
|
|
|
|