Bug 606048: Relax "Test timed out." requirement for screenshots. r=robcee, a=tests

This commit is contained in:
Karl Tomlinson 2010-10-21 10:01:35 -07:00
Родитель b2f027e6e7
Коммит dd3527c39a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -754,7 +754,7 @@ user_pref("camino.use_system_proxy_settings", false); // Camino-only, harmless t
if stackFixerFunction:
line = stackFixerFunction(line)
self.log.info(line.rstrip())
if self.UNIXISH and not debuggerInfo and not self.haveDumpedScreen and "TEST-UNEXPECTED-FAIL" in line and "Test timed out." in line:
if self.UNIXISH and not debuggerInfo and not self.haveDumpedScreen and "TEST-UNEXPECTED-FAIL" in line and "Test timed out" in line:
self.dumpScreen(utilityPath)
(line, didTimeout) = self.readWithTimeout(logsource, timeout)