Skip to content

Commit

Permalink
[fuzz] Rename differential_meta to differential
Browse files Browse the repository at this point in the history
Now that the `differential_meta` fuzz target does everything that the
existing `differential` target did and more, it can take over the
original name.
  • Loading branch information
abrown committed Aug 19, 2022
1 parent 45bd5cf commit 9c96b88
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ test = false
doc = false

[[bin]]
name = "differential_meta"
path = "fuzz_targets/differential_meta.rs"
name = "differential"
path = "fuzz_targets/differential.rs"
test = false
doc = false

Expand Down
2 changes: 1 addition & 1 deletion fuzz/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ At the time of writing, we have the following fuzz targets:
to its source, yielding a function A', and checks that A compiled +
incremental compilation generates the same machine code as if A' was compiled
from scratch.
* `differential_meta`: Generate a Wasm module, evaluate each exported function
* `differential`: Generate a Wasm module, evaluate each exported function
with random inputs, and check that Wasmtime returns the same results as a
choice of another engine: the Wasm spec interpreter (see the
`wasm-spec-interpreter` crate), the `wasmi` interpreter, or Wasmtime itself
Expand Down
File renamed without changes.

0 comments on commit 9c96b88

Please sign in to comment.