Updates fuzzers to discard less interesting data

This commit is contained in:
Morten Siebuhr 2016-05-10 11:46:03 +02:00
parent 981b636004
commit ffc8cab39a
1 changed files with 4 additions and 4 deletions

View File

@ -53,7 +53,7 @@ func FuzzParseMetric(in []byte) int {
return fuzzInteresting
}
return fuzzDiscard
return fuzzMeh
}
// Fuzz the metric selector parser.
@ -63,7 +63,7 @@ func FuzzParseMetricSelector(in []byte) int {
return fuzzInteresting
}
return fuzzDiscard
return fuzzMeh
}
// Fuzz the expression parser.
@ -73,7 +73,7 @@ func FuzzParseExpr(in []byte) int {
return fuzzInteresting
}
return fuzzDiscard
return fuzzMeh
}
// Fuzz the parser.
@ -83,5 +83,5 @@ func FuzzParseStmts(in []byte) int {
return fuzzInteresting
}
return fuzzDiscard
return fuzzMeh
}