compiletest: stop ignoring all tests.

This commit is contained in:
Graydon Hoare 2013-05-01 14:58:21 -07:00
parent 55fbc47af1
commit 08dd625d45

View File

@ -88,7 +88,7 @@ pub fn is_test_ignored(config: config, testfile: &Path) -> bool {
if config.mode == common::mode_pretty &&
parse_name_directive(ln, ~"xfail-pretty") { return true; }
};
return true;
return false;
fn xfail_target() -> ~str {
~"xfail-" + str::from_slice(os::SYSNAME)