rust/tests/run-make/wasm-stringify-ints-small/rmake.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
359 B
Rust
Raw Normal View History

//@ only-wasm32-wasip1
#![deny(warnings)]
2024-07-17 08:31:38 -05:00
use run_make_support::{rfs, rustc};
fn main() {
rustc()
.input("foo.rs")
.target("wasm32-wasip1")
.arg("-Clto")
.arg("-Cstrip=debuginfo")
.opt()
.run();
let bytes = rfs::read("foo.wasm");
println!("{}", bytes.len());
assert!(bytes.len() < 50_000);
}