mirror of https://github.com/rust-lang/rust
29 lines
889 B
Rust
29 lines
889 B
Rust
//@ only-wasm32-wasip1
|
|
|
|
use std::path::Path;
|
|
|
|
use run_make_support::{rfs, rustc, wasmparser};
|
|
|
|
fn main() {
|
|
rustc().input("foo.rs").target("wasm32-wasip1").run();
|
|
verify_symbols(Path::new("foo.wasm"));
|
|
rustc().input("foo.rs").target("wasm32-wasip1").arg("-Clto").run();
|
|
verify_symbols(Path::new("foo.wasm"));
|
|
rustc().input("foo.rs").target("wasm32-wasip1").opt().run();
|
|
verify_symbols(Path::new("foo.wasm"));
|
|
rustc().input("foo.rs").target("wasm32-wasip1").arg("-Clto").opt().run();
|
|
verify_symbols(Path::new("foo.wasm"));
|
|
}
|
|
|
|
fn verify_symbols(path: &Path) {
|
|
eprintln!("verify {path:?}");
|
|
let file = rfs::read(&path);
|
|
|
|
for payload in wasmparser::Parser::new(0).parse_all(&file) {
|
|
let payload = payload.unwrap();
|
|
if let wasmparser::Payload::ImportSection(_) = payload {
|
|
panic!("import section found");
|
|
}
|
|
}
|
|
}
|