许杰友 Jieyou Xu (Joe) d69cc1ccbf tests: update for rfs rename
2024-07-17 13:34:18 +00:00

22 lines
412 B
Rust

//@ only-wasm32-wasip1
#![deny(warnings)]
use run_make_support::{rfs, rustc};
fn main() {
test("a");
test("b");
test("c");
test("d");
}
fn test(cfg: &str) {
eprintln!("running cfg {cfg:?}");
rustc().input("foo.rs").target("wasm32-wasip1").arg("-Clto").opt().cfg(cfg).run();
let bytes = rfs::read("foo.wasm");
println!("{}", bytes.len());
assert!(bytes.len() < 40_000);
}