From 9c96b88b0d253272e89aa023916441f467f1b2bd Mon Sep 17 00:00:00 2001 From: Andrew Brown Date: Fri, 19 Aug 2022 09:01:51 -0700 Subject: [PATCH] [fuzz] Rename `differential_meta` to `differential` Now that the `differential_meta` fuzz target does everything that the existing `differential` target did and more, it can take over the original name. --- fuzz/Cargo.toml | 4 ++-- fuzz/README.md | 2 +- fuzz/fuzz_targets/{differential_meta.rs => differential.rs} | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename fuzz/fuzz_targets/{differential_meta.rs => differential.rs} (100%) diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index a5d4a21c1357..52ab67fb78f6 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -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 diff --git a/fuzz/README.md b/fuzz/README.md index 33d31306d749..ec2b77acab48 100644 --- a/fuzz/README.md +++ b/fuzz/README.md @@ -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 diff --git a/fuzz/fuzz_targets/differential_meta.rs b/fuzz/fuzz_targets/differential.rs similarity index 100% rename from fuzz/fuzz_targets/differential_meta.rs rename to fuzz/fuzz_targets/differential.rs