mirror of https://github.com/google/oss-fuzz.git
wasmtime: add new codegen backend, and add contact for it. (#4772)
In [Wasmtime](https://github.com/bytecodealliance/wasmtime), we're planning to transition eventually to a new x86 backend. We recently added a fuzz target for this backend that differentially fuzzes against a Wasm interpreter. This PR adds the new backend's fuzz target and adds a contact (me) to the notification list.
This commit is contained in:
parent
eb0c225372
commit
aa6646d893
|
@ -49,9 +49,11 @@ build() {
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
# Build with all features to enable the binaryen-using fuzz targets, and
|
# Build with peepmatic in order to enable the related fuzz targets.
|
||||||
# the peepmatic fuzz targets.
|
build wasmtime "" "" --features peepmatic-fuzzing
|
||||||
build wasmtime "" "" --all-features
|
|
||||||
|
# Build the differential fuzzer with the new x86-64 backend as well.
|
||||||
|
build wasmtime diff-newbe- differential_wasmi --features experimental_x64
|
||||||
|
|
||||||
build wasm-tools wasm-tools- ""
|
build wasm-tools wasm-tools- ""
|
||||||
build regalloc.rs regalloc- bt bt
|
build regalloc.rs regalloc- bt bt
|
||||||
|
|
|
@ -5,6 +5,7 @@ auto_ccs:
|
||||||
- "alex@alexcrichton.com"
|
- "alex@alexcrichton.com"
|
||||||
- "till@tillschneidereit.net"
|
- "till@tillschneidereit.net"
|
||||||
- "ydelendik@mozilla.com"
|
- "ydelendik@mozilla.com"
|
||||||
|
- "cfallin@gmail.com"
|
||||||
sanitizers:
|
sanitizers:
|
||||||
- address
|
- address
|
||||||
fuzzing_engines:
|
fuzzing_engines:
|
||||||
|
|
Loading…
Reference in New Issue