Skip to content

Commit 203bc16

Browse files
committed
Fuzzer: stop ignoring fixed bugs
1 parent 98db2fe commit 203bc16

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/fuzzer/fuzzer.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -368,8 +368,6 @@ fn check_compiling(filename: str) -> happiness {
368368
known_bug("https://github.com/graydon/rust/issues/897")
369369
} else if contains(p.err, "(castIsValid(op, S, Ty) && \"Invalid cast!\"), function Create") {
370370
known_bug("https://github.com/graydon/rust/issues/901")
371-
} else if contains(p.err, "(S->getType()->isPointerTy() && \"Invalid cast\"), function CreatePointerCast") {
372-
known_bug("https://github.com/graydon/rust/issues/976")
373371
} else if contains(p.err, "cast() argument of incompatible type!") {
374372
known_bug("https://github.com/graydon/rust/issues/973")
375373
} else if contains(p.err, "cast<Ty>() argument of incompatible type!") {
@@ -405,9 +403,6 @@ fn check_compiling(filename: str) -> happiness {
405403
log_err "Stdout: " + p.out;
406404
failed("internal compiler error")
407405

408-
} else if contains(p.out, "Predicate type_is_unique_box(bcx, uniq_ty) failed") {
409-
known_bug("https://github.com/graydon/rust/issues/968")
410-
411406
} else if contains(p.out, "error:") {
412407
cleanly_rejected("rejected with span_error")
413408
} else {

0 commit comments

Comments
 (0)