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:
bors-servo 2013-10-24 16:48:54 -07:00
commit 4301c2f4a4

View file

@ -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 {