about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/compiletest/header.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiletest/header.rs b/src/compiletest/header.rs
index b29e1c77be3..28bbbda9663 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)