We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b56b95b commit 1c4d43aCopy full SHA for 1c4d43a
Makefile
@@ -9,4 +9,4 @@ bench:
9
test:
10
cargo test --all-features
11
test-fuzz:
12
- ARBTEST_BUDGET_MS=60000 cargo test --all-features --release
+ ARBTEST_BUDGET_MS=6000000 cargo test --all-features --release
tests/fuzzing.rs
@@ -1,8 +1,8 @@
1
#[cfg(feature = "arbitrary")]
2
#[test]
3
fn test_fuzzing() {
4
+ use ::arbitrary::{Arbitrary, Unstructured};
5
use whatlang::Detector;
- use ::arbitrary::{Unstructured, Arbitrary};
6
7
fn prop(u: &mut Unstructured) -> ::arbitrary::Result<()> {
8
let detector = Detector::arbitrary(u)?;
0 commit comments