From 08dd625d455548c7a5795db930ebfc5e3b1eb9c4 Mon Sep 17 00:00:00 2001 From: Graydon Hoare Date: Wed, 1 May 2013 14:58:21 -0700 Subject: [PATCH] compiletest: stop ignoring all tests. --- src/compiletest/header.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiletest/header.rs b/src/compiletest/header.rs index b29e1c77be35..28bbbda96634 100644 --- a/src/compiletest/header.rs +++ b/src/compiletest/header.rs @@ -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)