about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGraydon Hoare <graydon@mozilla.com>2013-05-01 14:58:21 -0700
committerGraydon Hoare <graydon@mozilla.com>2013-05-01 14:58:21 -0700
commit08dd625d455548c7a5795db930ebfc5e3b1eb9c4 (patch)
treeedfd53a36502f883f57da4828f17da2244a882d8
parent55fbc47af15bb1a8d930a7623737903c54b58349 (diff)
downloadrust-08dd625d455548c7a5795db930ebfc5e3b1eb9c4.tar.gz
rust-08dd625d455548c7a5795db930ebfc5e3b1eb9c4.zip
compiletest: stop ignoring all tests.
-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)