Changeset 201550 in webkit
- Timestamp:
- Jun 1, 2016, 4:57:55 AM (10 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/run-gtk-tests (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r201548 r201550 1 2016-06-01 Carlos Garcia Campos <cgarcia@igalia.com> 2 3 Unreviewed. Mark GTK+ test /webkit2/WebKitWebInspectorServer/test-open-debugging-session as slow. 4 5 It's timing out in the bots, but it seems to pass when running run-gtk-tests with no timeout. For GLib tests the 6 timeout is applied per tester program not per test case, so we need to mark the whole test 7 WebKit2Gtk/TestInspectorServer as slow. 8 9 * Scripts/run-gtk-tests: 10 (TestRunner): 11 (TestRunner._run_test_glib): 12 1 13 2016-06-01 Carlos Garcia Campos <cgarcia@igalia.com> 2 14 -
trunk/Tools/Scripts/run-gtk-tests
r201548 r201550 89 89 SLOW = [ 90 90 "WTF_Lock.ContendedShortSection", 91 "WTF_WordLock.ContendedShortSection" 91 "WTF_WordLock.ContendedShortSection", 92 "WebKit2Gtk/TestInspectorServer", 92 93 ] 93 94 … … 326 327 tester_command.extend(['-s', test_case]) 327 328 tester_command.append(test_program) 328 329 return self._run_test_command(tester_command, self._options.timeout) 329 timeout = self._options.timeout 330 test = os.path.join(os.path.basename(os.path.dirname(test_program)), os.path.basename(test_program)) 331 if test in TestRunner.SLOW: 332 timeout *= 5 333 334 return self._run_test_command(tester_command, timeout) 330 335 331 336 def _get_tests_from_google_test_suite(self, test_program):
Note:
See TracChangeset
for help on using the changeset viewer.