Changeset 205573 in webkit


Ignore:
Timestamp:
Sep 7, 2016 5:00:40 PM (8 years ago)
Author:
Jonathan Bedard
Message:

Run spindumps on timeout on iOS 9 Simulator Release WK2 (Tests)
https://bugs.webkit.org/show_bug.cgi?id=161699

Reviewed by Alexey Proskuryakov.

This change does not have testing associated with it because the testing infrastructure does not exists, we cannot currently mock build-bot variables.

  • BuildSlaveSupport/build.webkit.org-config/master.cfg:

(RunWebKitTests): Enable sample on timeout for everything.
(RunWebKitTests.start): Disable sample on timeout for everything except iOS 9 WK2 release simulators.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg

    r205280 r205573  
    338338               "--no-show-results",
    339339               "--no-new-test-results",
    340                "--no-sample-on-timeout",
    341340               "--results-directory", "layout-test-results",
    342341               "--builder-name", WithProperties("%(buildername)s"),
     
    358357        if platform == "win":
    359358            self.setCommand(self.command + ['--batch-size', '100', '--root=' + os.path.join("WebKitBuild", self.getProperty('configuration'), "bin32")])
     359
     360        if WithProperties("%(buildername)s") != "Apple iOS 9 Simulator Release WK2 (Tests)":
     361            self.setCommand(self.command + ['--no-sample-on-timeout'])
    360362
    361363        if additionalArguments:
  • trunk/Tools/ChangeLog

    r205572 r205573  
     12016-09-07  Jonathan Bedard  <jbedard@apple.com>
     2
     3        Run spindumps on timeout on iOS 9 Simulator Release WK2 (Tests)
     4        https://bugs.webkit.org/show_bug.cgi?id=161699
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        This change does not have testing associated with it because the testing infrastructure does not exists, we cannot currently mock build-bot variables.
     9
     10        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
     11        (RunWebKitTests): Enable sample on timeout for everything.
     12        (RunWebKitTests.start): Disable sample on timeout for everything except iOS 9 WK2 release simulators.
     13
    1142016-09-06  Dean Jackson  <dino@apple.com>
    215
Note: See TracChangeset for help on using the changeset viewer.