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

extern crate run_make_support;

use run_make_support::{rustc, tmp_dir};

fn main() {
    rustc().input("foo.rs").target("wasm32-wasip1").arg("-Clto").opt().run();

    let bytes = std::fs::read(&tmp_dir().join("foo.wasm")).unwrap();
    println!("{}", bytes.len());
    assert!(bytes.len() < 50_000);
}