Skip to content

Commit 3bfb938

Browse files
committed
Disable honggfuzz features
Looks like fuzzing is broken. Disable `hongfuzz` default features as we did in `rust-bitcoin`.
1 parent 9fd9aa4 commit 3bfb938

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

fuzz/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ afl_fuzz = ["afl"]
1212
honggfuzz_fuzz = ["honggfuzz"]
1313

1414
[dependencies]
15-
honggfuzz = { version = "0.5", optional = true }
15+
honggfuzz = { version = "0.5", default-features = false, optional = true }
1616
afl = { version = "0.8", optional = true }
1717
regex = { version = "1.4"}
1818
miniscript = { path = "..", features = ["compiler"] }

fuzz/travis-fuzz.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
set -e
3-
cargo install --force honggfuzz
3+
cargo install --force honggfuzz --no-default-features
44
for TARGET in fuzz_targets/*; do
55
FILENAME=$(basename $TARGET)
66
FILE="${FILENAME%.*}"

0 commit comments

Comments
 (0)