diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-06-24 02:49:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-24 02:49:23 -0500 |
commit | 851194b0033cb1daa15d99adbb0191b25b637fa8 (patch) | |
tree | a88f8daa0c8295adc0e605836097b7b9ff3c530d | |
parent | 581c8ba1c867ad378dee79b05b11648726ce5efb (diff) | |
parent | 43cafcbb40c6732523ef2d556f02913953564fe1 (diff) | |
download | servo-851194b0033cb1daa15d99adbb0191b25b637fa8.tar.gz servo-851194b0033cb1daa15d99adbb0191b25b637fa8.zip |
Auto merge of #11844 - jdm:dromaeo-fix, r=Ms2ger
Fix the Dromaeo test runner
Fix the automated Dromaeo test runner. Without this change, it sits spinning at 100% CPU usage after completing all the tests.
---
- [X] `./mach build -d` does not report any errors
- [X] `./mach test-tidy` does not report any errors
- [X] These changes fix #11843 (github issue number if applicable).
- [X] These changes do not require tests because we don't run the Dromaeo tests in automation.
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/11844)
<!-- Reviewable:end -->
-rwxr-xr-x | tests/dromaeo/run_dromaeo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/dromaeo/run_dromaeo.py b/tests/dromaeo/run_dromaeo.py index 1ff5e18edf2..8f7127f8c7c 100755 --- a/tests/dromaeo/run_dromaeo.py +++ b/tests/dromaeo/run_dromaeo.py @@ -19,7 +19,7 @@ TEST_SERVER_PORT = 8192 # Run servo and print / parse the results for a specific Dromaeo module. def run_servo(servo_exe, tests): - url = "http://localhost:{0}/dromaeo/web/?{1}&automated&post_json".format(TEST_SERVER_PORT, tests) + url = "http://localhost:{0}/dromaeo/web/index.html?{1}&automated&post_json".format(TEST_SERVER_PORT, tests) args = [servo_exe, url, "-z", "-f"] return subprocess.Popen(args) |