mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
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 -->
This commit is contained in:
commit
851194b003
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ TEST_SERVER_PORT = 8192
|
||||||
|
|
||||||
# Run servo and print / parse the results for a specific Dromaeo module.
|
# Run servo and print / parse the results for a specific Dromaeo module.
|
||||||
def run_servo(servo_exe, tests):
|
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"]
|
args = [servo_exe, url, "-z", "-f"]
|
||||||
return subprocess.Popen(args)
|
return subprocess.Popen(args)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue