Skip to content

Commit 2b15aef

Browse files
committed
Fuzzer: ignore more bugs
1 parent 822ed2c commit 2b15aef

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/fuzzer/fuzzer.rs

+4
Original file line numberDiff line numberDiff line change
@@ -339,6 +339,8 @@ fn check_running(exe_filename: str) -> happiness {
339339
failed("Mentioned src/rt/")
340340
} else if contains(comb, "malloc") {
341341
failed("Mentioned malloc")
342+
} else if contains(comb, "Out of stack space, sorry") {
343+
known_bug("https://github.com/graydon/rust/issues/32 / https://github.com/graydon/rust/issues/445")
342344
} else {
343345
alt p.status {
344346
0 { passed }
@@ -366,6 +368,8 @@ fn check_compiling(filename: str) -> happiness {
366368
known_bug("https://github.com/graydon/rust/issues/897")
367369
} else if contains(p.err, "(castIsValid(op, S, Ty) && \"Invalid cast!\"), function Create") {
368370
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")
369373
} else if contains(p.err, "cast() argument of incompatible type!") {
370374
known_bug("https://github.com/graydon/rust/issues/973")
371375
} else if contains(p.err, "cast<Ty>() argument of incompatible type!") {

0 commit comments

Comments
 (0)