Skip to content
This repository has been archived by the owner on Mar 24, 2022. It is now read-only.

Commit

Permalink
Merge pull request #446 from bytecodealliance/acf/temp-disable-fuzz
Browse files Browse the repository at this point in the history
Disable the fuzz CI job and add a warning to lucet-wasi-fuzz till #445 is resolved
  • Loading branch information
acfoltzer authored Mar 12, 2020
2 parents 62f4128 + cc5a74e commit 08d43b6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
File renamed without changes.
12 changes: 12 additions & 0 deletions lucet-wasi-fuzz/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,18 @@ enum Config {
}

fn main() {
eprintln!(
"⚠️⚠️⚠️ WARNING ⚠️⚠️⚠️
This tool probably shouldn't be used at the moment.
We don't currently trust the native `clang -m32` as an oracle for Wasm given
the differences in alignment for `long long`s. See #445 for updates:
https://github.com/bytecodealliance/lucet/issues/445
"
);

lucet_runtime::lucet_internal_ensure_linked();
lucet_wasi::export_wasi_funcs();

Expand Down

0 comments on commit 08d43b6

Please sign in to comment.