mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Fix ServoDriver is_alive method
Update MANIFEST.json
This commit is contained in:
parent
2a7862540c
commit
78c2781891
2 changed files with 2 additions and 4 deletions
|
@ -674942,7 +674942,7 @@
|
|||
"support"
|
||||
],
|
||||
"tools/wptrunner/wptrunner/browsers/servodriver.py": [
|
||||
"0a63a32c96699a441ce696bae6b8d32f4d69bc3d",
|
||||
"75cee5abb68a67ebf624be28294a635ce5790cba",
|
||||
"support"
|
||||
],
|
||||
"tools/wptrunner/wptrunner/browsers/webkit.py": [
|
||||
|
|
|
@ -166,9 +166,7 @@ class ServoWebDriverBrowser(Browser):
|
|||
command=" ".join(self.command))
|
||||
|
||||
def is_alive(self):
|
||||
if self.runner:
|
||||
return self.runner.is_running()
|
||||
return False
|
||||
return self.proc.poll() is None
|
||||
|
||||
def cleanup(self):
|
||||
self.stop()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue