7141379559
This commit rewrites a number of `run-make` tests centered around wasm to instead use `rmake.rs` and additionally use the `wasm32-wasip1` target instead of `wasm32-unknown-unknown`. Testing no longer requires Node.js and additionally uses the `wasmparser` crate from crates.io to parse outputs and power assertions.
32 lines
1.0 KiB
Rust
32 lines
1.0 KiB
Rust
extern crate run_make_support;
|
|
|
|
use run_make_support::{out_dir, rustc, wasmparser};
|
|
use std::path::Path;
|
|
|
|
fn main() {
|
|
if std::env::var("TARGET").unwrap() != "wasm32-wasip1" {
|
|
return;
|
|
}
|
|
|
|
rustc().arg("foo.rs").arg("--target=wasm32-wasip1").run();
|
|
verify_symbols(&out_dir().join("foo.wasm"));
|
|
rustc().arg("foo.rs").arg("--target=wasm32-wasip1").arg("-Clto").run();
|
|
verify_symbols(&out_dir().join("foo.wasm"));
|
|
rustc().arg("foo.rs").arg("--target=wasm32-wasip1").arg("-O").run();
|
|
verify_symbols(&out_dir().join("foo.wasm"));
|
|
rustc().arg("foo.rs").arg("--target=wasm32-wasip1").arg("-Clto").arg("-O").run();
|
|
verify_symbols(&out_dir().join("foo.wasm"));
|
|
}
|
|
|
|
fn verify_symbols(path: &Path) {
|
|
eprintln!("verify {path:?}");
|
|
let file = std::fs::read(&path).unwrap();
|
|
|
|
for payload in wasmparser::Parser::new(0).parse_all(&file) {
|
|
let payload = payload.unwrap();
|
|
if let wasmparser::Payload::ImportSection(_) = payload {
|
|
panic!("import section found");
|
|
}
|
|
}
|
|
}
|