about summary refs log tree commit diff
path: root/tests/run-make/wasm-stringify-ints-small/rmake.rs
blob: c0448c59c037b599033db09a955eec23ddbfc0e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//@ only-wasm32-wasip1
#![deny(warnings)]

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);
}