Changeset 282424 in webkit


Ignore:
Timestamp:
Sep 14, 2021, 4:58:47 PM (4 years ago)
Author:
commit-queue@webkit.org
Message:

[builtins-generator-tests] Invoke with Python 3
https://bugs.webkit.org/show_bug.cgi?id=229879

Patch by Kevin Neal <kevin_neal@apple.com> on 2021-09-14
Reviewed by Jonathan Bedard.

  • CISupport/build-webkit-org/steps.py:

(RunBuiltinsTests):

  • Scripts/run-builtins-generator-tests:

(main): Deleted.

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/CISupport/build-webkit-org/steps.py

    r282288 r282424  
    876876    description = ["builtins-generator-tests running"]
    877877    descriptionDone = ["builtins-generator-tests"]
    878     command = ["python", "Tools/Scripts/run-builtins-generator-tests"]
     878    command = ["python3", "Tools/Scripts/run-builtins-generator-tests"]
    879879
    880880
  • trunk/Tools/ChangeLog

    r282409 r282424  
     12021-09-14  Kevin Neal  <kevin_neal@apple.com>
     2
     3        [builtins-generator-tests] Invoke with Python 3
     4        https://bugs.webkit.org/show_bug.cgi?id=229879
     5
     6        Reviewed by Jonathan Bedard.
     7
     8        * CISupport/build-webkit-org/steps.py:
     9        (RunBuiltinsTests):
     10        * Scripts/run-builtins-generator-tests:
     11        (main): Deleted.
     12
    1132021-09-14  Jonathan Bedard  <jbedard@apple.com>
    214
  • trunk/Tools/Scripts/run-builtins-generator-tests

    r273384 r282424  
    1 #!/usr/bin/env python
     1#!/usr/bin/env python3
    22# Copyright (C) 2015 Apple Inc. All rights reserved.
    33#
Note: See TracChangeset for help on using the changeset viewer.