mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
auto merge of #1130 : kmcallister/servo/contenttest, r=metajack
**This build is expected to fail** at first, because `test_img_width_height` is broken on `master`. It's the simplest way I know to check that with this change, buildbot will indeed catch failing content tests. After that happens I'll push the commits to fix `test_img_width_height` and request a re-review.
This commit is contained in:
commit
4301c2f4a4
1 changed files with 3 additions and 1 deletions
|
@ -27,7 +27,9 @@ fn main() {
|
|||
let config = parse_config(args);
|
||||
let opts = test_options(config.clone());
|
||||
let tests = find_tests(config);
|
||||
run_tests_console(&opts, tests);
|
||||
if !run_tests_console(&opts, tests) {
|
||||
os::set_exit_status(1);
|
||||
}
|
||||
}
|
||||
|
||||
fn parse_config(args: ~[~str]) -> Config {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue