Title: [277489] trunk/Tools
Revision
277489
Author
jbed...@apple.com
Date
2021-05-14 08:51:07 -0700 (Fri, 14 May 2021)

Log Message

test-lldb-webkit failing with import of lldb
https://bugs.webkit.org/show_bug.cgi?id=225792
<rdar://problem/77993980>

Reviewed by Dewei Zhu.

* CISupport/build-webkit-org/steps.py:
(RunLLDBWebKitTests): Invoke test-lldb-webkit with Python 3.
* CISupport/build-webkit-org/steps_unittest.py:
* Scripts/test-lldb-webkit: Change shebang to Python 3.

Modified Paths

Diff

Modified: trunk/Tools/CISupport/build-webkit-org/steps.py (277488 => 277489)


--- trunk/Tools/CISupport/build-webkit-org/steps.py	2021-05-14 14:36:00 UTC (rev 277488)
+++ trunk/Tools/CISupport/build-webkit-org/steps.py	2021-05-14 15:51:07 UTC (rev 277489)
@@ -737,7 +737,7 @@
     description = ["lldb-webkit-tests running"]
     descriptionDone = ["lldb-webkit-tests"]
     command = [
-        "python",
+        "python3",
         "./Tools/Scripts/test-lldb-webkit",
         "--verbose",
         "--no-build",

Modified: trunk/Tools/CISupport/build-webkit-org/steps_unittest.py (277488 => 277489)


--- trunk/Tools/CISupport/build-webkit-org/steps_unittest.py	2021-05-14 14:36:00 UTC (rev 277488)
+++ trunk/Tools/CISupport/build-webkit-org/steps_unittest.py	2021-05-14 15:51:07 UTC (rev 277489)
@@ -702,7 +702,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=True,
-                command=['python', './Tools/Scripts/test-lldb-webkit', '--verbose', '--no-build', '--release'],
+                command=['python3', './Tools/Scripts/test-lldb-webkit', '--verbose', '--no-build', '--release'],
             ) + 0,
         )
         self.expectOutcome(result=SUCCESS, state_string='lldb-webkit-test')
@@ -716,7 +716,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=True,
-                command=['python', './Tools/Scripts/test-lldb-webkit', '--verbose', '--no-build', '--release'],
+                command=['python3', './Tools/Scripts/test-lldb-webkit', '--verbose', '--no-build', '--release'],
             ) + 2,
         )
         self.expectOutcome(result=FAILURE, state_string='lldb-webkit-test (failure)')
@@ -730,7 +730,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=True,
-                command=['python', './Tools/Scripts/test-lldb-webkit', '--verbose', '--no-build', '--release'],
+                command=['python3', './Tools/Scripts/test-lldb-webkit', '--verbose', '--no-build', '--release'],
             ) + 2
             + ExpectShell.log('stdio', stdout='FAILED (failures=2, errors=0)'),
         )
@@ -745,7 +745,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=True,
-                command=['python', './Tools/Scripts/test-lldb-webkit', '--verbose', '--no-build', '--release'],
+                command=['python3', './Tools/Scripts/test-lldb-webkit', '--verbose', '--no-build', '--release'],
             ) + 2
             + ExpectShell.log('stdio', stdout='FAILED (failures=0, errors=2)'),
         )
@@ -760,7 +760,7 @@
                 workdir='wkdir',
                 timeout=1200,
                 logEnviron=True,
-                command=['python', './Tools/Scripts/test-lldb-webkit', '--verbose', '--no-build', '--release'],
+                command=['python3', './Tools/Scripts/test-lldb-webkit', '--verbose', '--no-build', '--release'],
             ) + 2
             + ExpectShell.log('stdio', stdout='FAILED (failures=30, errors=2)'),
         )

Modified: trunk/Tools/ChangeLog (277488 => 277489)


--- trunk/Tools/ChangeLog	2021-05-14 14:36:00 UTC (rev 277488)
+++ trunk/Tools/ChangeLog	2021-05-14 15:51:07 UTC (rev 277489)
@@ -1,3 +1,16 @@
+2021-05-14  Jonathan Bedard  <jbed...@apple.com>
+
+        test-lldb-webkit failing with import of lldb
+        https://bugs.webkit.org/show_bug.cgi?id=225792
+        <rdar://problem/77993980>
+
+        Reviewed by Dewei Zhu.
+
+        * CISupport/build-webkit-org/steps.py:
+        (RunLLDBWebKitTests): Invoke test-lldb-webkit with Python 3.
+        * CISupport/build-webkit-org/steps_unittest.py:
+        * Scripts/test-lldb-webkit: Change shebang to Python 3.
+
 2021-05-14  Carlos Garcia Campos  <cgar...@igalia.com>
 
         Unreviewed. [GTK] Fix make distcheck

Modified: trunk/Tools/Scripts/test-lldb-webkit (277488 => 277489)


--- trunk/Tools/Scripts/test-lldb-webkit	2021-05-14 14:36:00 UTC (rev 277488)
+++ trunk/Tools/Scripts/test-lldb-webkit	2021-05-14 15:51:07 UTC (rev 277489)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 # Copyright (c) 2019 Apple Inc. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to