Title: [229884] trunk/Tools
Revision
229884
Author
carlo...@webkit.org
Date
2018-03-23 00:49:14 -0700 (Fri, 23 Mar 2018)

Log Message

Unreviewed. Run JSC GLib API tests in GTK+ and WPE bots.

The test runners were still considering the JSC tests as google tests, but they are now GLib tests.

* Scripts/run-gtk-tests:
(GtkTestRunner.is_glib_test):
(GtkTestRunner.is_google_test):
* Scripts/run-wpe-tests:
(WPETestRunner.is_glib_test):
(WPETestRunner.is_google_test):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (229883 => 229884)


--- trunk/Tools/ChangeLog	2018-03-23 06:53:26 UTC (rev 229883)
+++ trunk/Tools/ChangeLog	2018-03-23 07:49:14 UTC (rev 229884)
@@ -1,3 +1,16 @@
+2018-03-23  Carlos Garcia Campos  <cgar...@igalia.com>
+
+        Unreviewed. Run JSC GLib API tests in GTK+ and WPE bots.
+
+        The test runners were still considering the JSC tests as google tests, but they are now GLib tests.
+
+        * Scripts/run-gtk-tests:
+        (GtkTestRunner.is_glib_test):
+        (GtkTestRunner.is_google_test):
+        * Scripts/run-wpe-tests:
+        (WPETestRunner.is_glib_test):
+        (WPETestRunner.is_google_test):
+
 2018-03-22  Daniel Bates  <daba...@apple.com>
 
         Expose SchemeRegistry::registerAsCanDisplayOnlyIfCanRequest() as WebKit SPI

Modified: trunk/Tools/Scripts/run-gtk-tests (229883 => 229884)


--- trunk/Tools/Scripts/run-gtk-tests	2018-03-23 06:53:26 UTC (rev 229883)
+++ trunk/Tools/Scripts/run-gtk-tests	2018-03-23 07:49:14 UTC (rev 229884)
@@ -119,10 +119,10 @@
         super(GtkTestRunner, self)._tear_down_testing_environment()
 
     def is_glib_test(self, test_program):
-        return os.path.basename(os.path.dirname(test_program)) == "WebKit2Gtk"
+        return os.path.basename(os.path.dirname(test_program)) in ["WebKit2Gtk", "_javascript_Core"]
 
     def is_google_test(self, test_program):
-        return os.path.basename(os.path.dirname(test_program)) in ["WebKit", "_javascript_Core", "WTF", "WebCore",  "WebCoreGtk"]
+        return os.path.basename(os.path.dirname(test_program)) in ["WebKit", "WTF", "WebCore",  "WebCoreGtk"]
 
 if __name__ == "__main__":
     if not jhbuildutils.enter_jhbuild_environment_if_available("gtk"):

Modified: trunk/Tools/Scripts/run-wpe-tests (229883 => 229884)


--- trunk/Tools/Scripts/run-wpe-tests	2018-03-23 06:53:26 UTC (rev 229883)
+++ trunk/Tools/Scripts/run-wpe-tests	2018-03-23 07:49:14 UTC (rev 229884)
@@ -35,10 +35,10 @@
         super(WPETestRunner, self).__init__("wpe", options, tests)
 
     def is_glib_test(self, test_program):
-        return os.path.basename(os.path.dirname(test_program)) == "WPE"
+        return os.path.basename(os.path.dirname(test_program)) in ["WPE", "_javascript_Core"]
 
     def is_google_test(self, test_program):
-        return os.path.basename(os.path.dirname(test_program)) in ["WebKit", "_javascript_Core", "WTF", "WebCore"]
+        return os.path.basename(os.path.dirname(test_program)) in ["WebKit", "WTF", "WebCore"]
 
 
 if __name__ == "__main__":
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to