Skip to content

Commit 17dcfa9

Browse files
committed
add readme for fuzz test
1 parent 1d41dfa commit 17dcfa9

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

packages/crypto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ license = "Apache-2.0"
66
name = "owasm-crypto"
77
readme = "README.md"
88
repository = "https://github.com/bandprotocol/owasm/tree/master/packages/crypto"
9-
version = "0.2.1"
9+
version = "0.2.2"
1010

1111
[features]
1212
default = []

packages/kit/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ license = "Apache-2.0"
66
name = "owasm-kit"
77
readme = "README.md"
88
repository = "https://github.com/bandprotocol/owasm/tree/master/packages/kit"
9-
version = "0.2.1"
9+
version = "0.2.2"
1010

1111
[dependencies]
1212
num = "0.2.1"

packages/vm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ license = "Apache-2.0"
66
name = "owasm-vm"
77
readme = "README.md"
88
repository = "https://github.com/bandprotocol/owasm/tree/master/packages/vm"
9-
version = "0.2.1"
9+
version = "0.2.2"
1010

1111
[dependencies]
1212
assert_matches = "1.3.0"
1313
clru = "0.2.0"
1414
hex = "0.4"
15-
owasm-crypto = {path = "../crypto", version = "0.2.1"}
15+
owasm-crypto = {path = "../crypto", version = "0.2.2"}
1616
sha2 = "0.9.1"
1717
tempfile = "3.1.0"
1818
wasm-instrument = "0.2.0"

packages/vm/fuzz/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "owasm-vm-fuzz"
3-
version = "0.0.0"
3+
version = "0.2.2"
44
authors = ["Automatically generated"]
55
publish = false
66
edition = "2018"

packages/vm/fuzz/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Run Fuzz Test
2+
3+
cargo fuzz run fuzz_target_1 -- -runs=<number of run limit>
4+
5+
** Currently, can't run on MacOS because of Sanitizer issue
6+
For details see https://github.com/google/sanitizers/issues/189

0 commit comments

Comments
 (0)