Bug 89541
| Summary: | Apple port does not need to build tools for testers | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Lucas Forschler <lforschler> |
| Component: | Web Audio | Assignee: | Lucas Forschler <lforschler> |
| Status: | RESOLVED FIXED | ||
| Severity: | Normal | CC: | crogers |
| Priority: | P2 | ||
| Version: | 528+ (Nightly build) | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Bug Depends on: | 89540 | ||
| Bug Blocks: | |||
Lucas Forschler
Once 89540 is done, we need to tell the bots not to build the tools.
run-api-tests needs --no-build
run-webkit-tests needs --no-build
| Attachments | ||
|---|---|---|
| Add attachment proposed patch, testcase, etc. |
Lucas Forschler
I think this is fixed... current master.cfg reads:
command = ["perl", "./Tools/Scripts/run-api-tests", "--no-build", WithProperties("--%(configuration)s"), "--verbose"]
Lucas Forschler
and for run-webkit-tests
class RunWebKitTests(shell.Test):
name = "layout-test"
description = ["layout-tests running"]
descriptionDone = ["layout-tests"]
resultDirectory = "layout-test-results"
command = ["python", "./Tools/Scripts/run-webkit-tests",
"--no-build",
"--no-show-results",
"--no-new-test-results",
"--builder-name", WithProperties("%(buildername)s"),
"--build-number", WithProperties("%(buildnumber)s"),
"--master-name", "webkit.org",
"--test-results-server", "webkit-test-results.webkit.org",
"--exit-after-n-crashes-or-timeouts", "50",
"--exit-after-n-failures", "500",
WithProperties("--%(configuration)s")]