mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
32 lines
833 B
Rust
32 lines
833 B
Rust
extern crate run_make_support;
|
|
|
|
use run_make_support::{tmp_dir, wasmparser, rustc};
|
|
use std::collections::HashMap;
|
|
use std::path::Path;
|
|
|
|
fn main() {
|
|
if std::env::var("TARGET").unwrap() != "wasm32-wasip1" {
|
|
return;
|
|
}
|
|
|
|
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][..]));
|
|
}
|