Title: [160987] trunk/Tools
Revision
160987
Author
[email protected]
Date
2013-12-23 00:21:12 -0800 (Mon, 23 Dec 2013)

Log Message

[GTK] run-gtk-tests should always run glib tests with -k option
https://bugs.webkit.org/show_bug.cgi?id=126132

Reviewed by Philippe Normand.

With -k command line option, gtester continues running all other
test cases after a failure.

* Scripts/run-gtk-tests:
(TestRunner._run_test_glib): Use -k option when runing glib tests
to not stop on failure.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (160986 => 160987)


--- trunk/Tools/ChangeLog	2013-12-23 06:20:59 UTC (rev 160986)
+++ trunk/Tools/ChangeLog	2013-12-23 08:21:12 UTC (rev 160987)
@@ -1,3 +1,17 @@
+2013-12-23  Carlos Garcia Campos  <[email protected]>
+
+        [GTK] run-gtk-tests should always run glib tests with -k option
+        https://bugs.webkit.org/show_bug.cgi?id=126132
+
+        Reviewed by Philippe Normand.
+
+        With -k command line option, gtester continues running all other
+        test cases after a failure.
+
+        * Scripts/run-gtk-tests:
+        (TestRunner._run_test_glib): Use -k option when runing glib tests
+        to not stop on failure.
+
 2013-12-22  Martin Robinson  <[email protected]>
 
         [GTK][CMake] Integrate GResource for inspector files (and others?)

Modified: trunk/Tools/Scripts/run-gtk-tests (160986 => 160987)


--- trunk/Tools/Scripts/run-gtk-tests	2013-12-23 06:20:59 UTC (rev 160986)
+++ trunk/Tools/Scripts/run-gtk-tests	2013-12-23 08:21:12 UTC (rev 160987)
@@ -315,7 +315,7 @@
         return return_code_from_exit_status(status)
 
     def _run_test_glib(self, test_program):
-        tester_command = ['gtester']
+        tester_command = ['gtester', '-k']
         if self._options.verbose:
             tester_command.append('--verbose')
         for test_case in self._test_cases_to_skip(test_program):
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to