Changeset 231686 in webkit


Ignore:
Timestamp:
May 10, 2018 7:07:25 PM (6 years ago)
Author:
commit-queue@webkit.org
Message:

[Build Bot] Restore configuration options to the Test262 Runner

During the switch from the previous Test262 runner to the new one,
a call for an extra configurations options got removed.

This call is important to inform the script to find the debug or
release build of JSC. It's being restored in this patch.

https://bugs.webkit.org/show_bug.cgi?id=185513

Patch by Leo Balter <Leo Balter> on 2018-05-10
Reviewed by Yusuke Suzuki.

  • BuildSlaveSupport/build.webkit.org-config/steps.py:

(RunTest262Tests):

Location:
trunk/Tools
Files:
2 edited

Legend:

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

    r231673 r231686  
    368368    descriptionDone = ["test262-tests"]
    369369    failedTestsFormatString = "%d Test262 test%s failed"
    370     command = ["perl", "./Tools/Scripts/test262-runner"]
     370    command = ["perl", "./Tools/Scripts/test262-runner", WithProperties("--%(configuration)s")]
    371371
    372372    def start(self):
  • trunk/Tools/ChangeLog

    r231679 r231686  
     12018-05-10  Leo Balter  <leonardo.balter@gmail.com>
     2
     3        [Build Bot] Restore configuration options to the Test262 Runner
     4
     5        During the switch from the previous Test262 runner to the new one,
     6        a call for an extra configurations options got removed.
     7
     8        This call is important to inform the script to find the debug or
     9        release build of JSC. It's being restored in this patch.
     10
     11        https://bugs.webkit.org/show_bug.cgi?id=185513
     12
     13        Reviewed by Yusuke Suzuki.
     14
     15        * BuildSlaveSupport/build.webkit.org-config/steps.py:
     16        (RunTest262Tests):
     17
    1182018-05-10  Jonathan Bedard  <jbedard@apple.com>
    219
Note: See TracChangeset for help on using the changeset viewer.