Title: [280040] trunk/Tools
Revision
280040
Author
ryanhad...@apple.com
Date
2021-07-19 11:53:56 -0700 (Mon, 19 Jul 2021)

Log Message

[build.webkit.org] lldb-webkit-test is failing on Catalina queues
https://bugs.webkit.org/show_bug.cgi?id=227946

Reviewed by Aakash Jain.

The changes to lldb-webkit-test to support the Python 3 version of lldb present in the
Big Sur-aligned Xcode have made it incompatible with Catalin's Python 2 version.

Rather than creating and defending the results for two different versions of the lldb-webkit-test
script, disable this test step for Catalina.

* CISupport/build-webkit-org/factories.py:
(TestFactory.__init__):

Modified Paths

Diff

Modified: trunk/Tools/CISupport/build-webkit-org/factories.py (280039 => 280040)


--- trunk/Tools/CISupport/build-webkit-org/factories.py	2021-07-19 18:14:54 UTC (rev 280039)
+++ trunk/Tools/CISupport/build-webkit-org/factories.py	2021-07-19 18:53:56 UTC (rev 280040)
@@ -108,7 +108,7 @@
         if platform.startswith('win') or platform.startswith('mac') or platform.startswith('ios-simulator'):
             self.addStep(RunAPITests())
 
-        if platform.startswith('mac'):
+        if platform.startswith('mac') and (platform != 'mac-catalina'):
             self.addStep(RunLLDBWebKitTests())
 
         self.addStep(RunWebKitPyTests())

Modified: trunk/Tools/ChangeLog (280039 => 280040)


--- trunk/Tools/ChangeLog	2021-07-19 18:14:54 UTC (rev 280039)
+++ trunk/Tools/ChangeLog	2021-07-19 18:53:56 UTC (rev 280040)
@@ -1,5 +1,21 @@
 2021-07-19  Ryan Haddad  <ryanhad...@apple.com>
 
+        [build.webkit.org] lldb-webkit-test is failing on Catalina queues
+        https://bugs.webkit.org/show_bug.cgi?id=227946
+
+        Reviewed by Aakash Jain.
+
+        The changes to lldb-webkit-test to support the Python 3 version of lldb present in the
+        Big Sur-aligned Xcode have made it incompatible with Catalin's Python 2 version.
+
+        Rather than creating and defending the results for two different versions of the lldb-webkit-test
+        script, disable this test step for Catalina.
+
+        * CISupport/build-webkit-org/factories.py:
+        (TestFactory.__init__):
+
+2021-07-19  Ryan Haddad  <ryanhad...@apple.com>
+
         Unreviewed infrastructure fix, remove bot that is out for hardware repair.
 
         * CISupport/ews-build/config.json:
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to