rust/tests/run-make/wasm-panic-small/rmake.rs
Alex Crichton 006c884480 Fix two new failing tests
The updated wasi-sdk has debuginfo by default so be sure to strip the
debuginfo by default when testing the size of new executables.
2024-07-19 10:27:14 -07:00

29 lines
500 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")
.arg("-Cstrip=debuginfo")
.opt()
.cfg(cfg)
.run();
let bytes = rfs::read("foo.wasm");
println!("{}", bytes.len());
assert!(bytes.len() < 40_000);
}