Changeset 240006 in webkit


Ignore:
Timestamp:
Jan 15, 2019 2:17:07 PM (5 years ago)
Author:
Ryan Haddad
Message:

Adjust the arguments passed to run-javascriptcore-tests for the 32-bit JSC bot
https://bugs.webkit.org/show_bug.cgi?id=193459

Reviewed by Mark Lam.

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

(Run32bitJSCTests): This queue should not run JIT, testair, testb3, or testmasm.

Location:
trunk/Tools
Files:
2 edited

Legend:

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

    r236014 r240006  
    600600    descriptionDone = ["32bit-jsc-tests"]
    601601    jsonFileName = "jsc_32bit.json"
    602     command = ["perl", "./Tools/Scripts/run-javascriptcore-tests", "--32-bit", "--no-build", "--no-fail-fast", "--json-output={0}".format(jsonFileName), WithProperties("--%(configuration)s")]
     602    command = ["perl", "./Tools/Scripts/run-javascriptcore-tests", "--32-bit", "--no-build", "--no-fail-fast", "--no-jit", "--no-testair", "--no-testb3", "--no-testmasm", "--json-output={0}".format(jsonFileName), WithProperties("--%(configuration)s")]
    603603    failedTestsFormatString = "%d regression%s found."
    604604    logfiles = {"json": jsonFileName}
  • trunk/Tools/ChangeLog

    r239993 r240006  
     12019-01-15  Ryan Haddad  <ryanhaddad@apple.com>
     2
     3        Adjust the arguments passed to run-javascriptcore-tests for the 32-bit JSC bot
     4        https://bugs.webkit.org/show_bug.cgi?id=193459
     5
     6        Reviewed by Mark Lam.
     7
     8        * BuildSlaveSupport/build.webkit.org-config/steps.py:
     9        (Run32bitJSCTests): This queue should not run JIT, testair, testb3, or testmasm.
     10
    1112019-01-15  Chris Dumez  <cdumez@apple.com>
    212
Note: See TracChangeset for help on using the changeset viewer.