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

Disable the fuzz CI job and add a warning to lucet-wasi-fuzz till #445 is resolved #446

Merged
merged 1 commit into from
Mar 12, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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