about summary refs log tree commit diff
path: root/src/fuzzer
diff options
context:
space:
mode:
authorJesse Ruderman <jruderman@gmail.com>2011-09-25 12:24:42 -0700
committerJesse Ruderman <jruderman@gmail.com>2011-09-25 12:24:42 -0700
commit203bc16e7b52341fa5e1f47d21b27fcf118ded59 (patch)
tree56451ff9dd8c6b85d86d2ab8dcc87ab38a9a5d62 /src/fuzzer
parent98db2febd33ee0cc20d149574cb8c8987587bc03 (diff)
downloadrust-203bc16e7b52341fa5e1f47d21b27fcf118ded59.tar.gz
rust-203bc16e7b52341fa5e1f47d21b27fcf118ded59.zip
Fuzzer: stop ignoring fixed bugs
Diffstat (limited to 'src/fuzzer')
-rw-r--r--src/fuzzer/fuzzer.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/fuzzer/fuzzer.rs b/src/fuzzer/fuzzer.rs
index 90905098bc0..635145a08d8 100644
--- a/src/fuzzer/fuzzer.rs
+++ b/src/fuzzer/fuzzer.rs
@@ -368,8 +368,6 @@ fn check_compiling(filename: str) -> happiness {
             known_bug("https://github.com/graydon/rust/issues/897")
         } else if contains(p.err, "(castIsValid(op, S, Ty) && \"Invalid cast!\"), function Create") {
             known_bug("https://github.com/graydon/rust/issues/901")
-        } else if contains(p.err, "(S->getType()->isPointerTy() && \"Invalid cast\"), function CreatePointerCast") {
-            known_bug("https://github.com/graydon/rust/issues/976")
         } else if contains(p.err, "cast() argument of incompatible type!") {
             known_bug("https://github.com/graydon/rust/issues/973")
         } else if contains(p.err, "cast<Ty>() argument of incompatible type!") {
@@ -405,9 +403,6 @@ fn check_compiling(filename: str) -> happiness {
         log_err "Stdout: " + p.out;
         failed("internal compiler error")
 
-    } else if contains(p.out, "Predicate type_is_unique_box(bcx, uniq_ty) failed") {
-        known_bug("https://github.com/graydon/rust/issues/968")
-
     } else if contains(p.out, "error:") {
         cleanly_rejected("rejected with span_error")
     } else {