mirror of
https://github.com/servo/servo.git
synced 2025-06-14 11:24:33 +00:00
Add smoketest command.
This commit is contained in:
parent
79938affb3
commit
a690d6ffa7
2 changed files with 15 additions and 0 deletions
|
@ -971,3 +971,13 @@ testing/web-platform/mozilla/tests for Servo-only tests""" % reference_path)
|
||||||
run_globals = {"__file__": run_file}
|
run_globals = {"__file__": run_file}
|
||||||
execfile(run_file, run_globals)
|
execfile(run_file, run_globals)
|
||||||
return run_globals["update_conformance"](version, dest_folder, None, patches_dir)
|
return run_globals["update_conformance"](version, dest_folder, None, patches_dir)
|
||||||
|
|
||||||
|
@Command('smoketest',
|
||||||
|
description='Load a simple page in Servo and ensure that it closes properly',
|
||||||
|
category='testing')
|
||||||
|
@CommandArgument('params', nargs='...',
|
||||||
|
help="Command-line arguments to be passed through to Servo")
|
||||||
|
def smoketest(self, params):
|
||||||
|
params = params + ['tests/html/close-on-load.html']
|
||||||
|
return self.context.commands.dispatch(
|
||||||
|
'run', self.context, params=params)
|
||||||
|
|
5
tests/html/close-on-load.html
Normal file
5
tests/html/close-on-load.html
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
<script>
|
||||||
|
window.onload = function() {
|
||||||
|
window.close();
|
||||||
|
}
|
||||||
|
</script>
|
Loading…
Add table
Add a link
Reference in a new issue