mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
28 lines
741 B
Rust
28 lines
741 B
Rust
//@ only-wasm32-wasip1
|
|
|
|
use run_make_support::{rustc, tmp_dir, wasmparser};
|
|
use std::collections::HashMap;
|
|
use std::path::Path;
|
|
|
|
fn main() {
|
|
rustc().input("foo.rs").target("wasm32-wasip1").opt().run();
|
|
|
|
verify(&tmp_dir().join("foo.wasm"));
|
|
}
|
|
|
|
fn verify(path: &Path) {
|
|
eprintln!("verify {path:?}");
|
|
let file = std::fs::read(&path).unwrap();
|
|
|
|
let mut custom = HashMap::new();
|
|
for payload in wasmparser::Parser::new(0).parse_all(&file) {
|
|
let payload = payload.unwrap();
|
|
if let wasmparser::Payload::CustomSection(s) = payload {
|
|
let prev = custom.insert(s.name(), s.data());
|
|
assert!(prev.is_none());
|
|
}
|
|
}
|
|
|
|
assert_eq!(custom.remove("foo"), Some(&[1, 2, 3, 4][..]));
|
|
}
|