]> git.lizzy.rs Git - rust.git/blob - test.sh
71c3ba50f7e1cc947bcf524ef29061bc6f4dcd5d
[rust.git] / test.sh
1 #!/bin/bash
2
3 set -e
4
5 if [[ "$1" == "--release" ]]; then
6     export CHANNEL='release'
7     cargo build --release
8 else
9     export CHANNEL='debug'
10     cargo build
11 fi
12
13 source config.sh
14
15 rm -r target/out || true
16 mkdir -p target/out/clif
17
18 echo "[BUILD] mini_core"
19 $RUSTC example/mini_core.rs --crate-name mini_core --crate-type dylib
20
21 echo "[BUILD] example"
22 $RUSTC example/example.rs --crate-type lib
23
24 echo "[JIT] mini_core_hello_world"
25 SHOULD_RUN=1 JIT_ARGS="abc bcd" $RUSTC --crate-type bin example/mini_core_hello_world.rs --cfg jit
26
27 echo "[AOT] mini_core_hello_world"
28 $RUSTC example/mini_core_hello_world.rs --crate-name mini_core_hello_world --crate-type bin
29 ./target/out/mini_core_hello_world abc bcd
30
31 echo "[AOT] arbitrary_self_types_pointers_and_wrappers"
32 $RUSTC example/arbitrary_self_types_pointers_and_wrappers.rs --crate-name arbitrary_self_types_pointers_and_wrappers --crate-type bin
33 ./target/out/arbitrary_self_types_pointers_and_wrappers
34
35 echo "[BUILD] sysroot"
36 #time ./build_sysroot/build_sysroot.sh
37
38 echo "[AOT] alloc_example"
39 $RUSTC example/alloc_example.rs --crate-type bin
40 ./target/out/alloc_example
41
42 echo "[JIT] std_example"
43 SHOULD_RUN=1 $RUSTC example/std_example.rs --crate-type bin -Cprefer-dynamic
44
45 echo "[AOT] std_example"
46 $RUSTC example/std_example.rs --crate-type bin
47 ./target/out/std_example
48
49 echo "[BUILD] mod_bench"
50 $RUSTC example/mod_bench.rs --crate-type bin
51
52 # FIXME linker gives multiple definitions error on Linux
53 #echo "[BUILD] sysroot in release mode"
54 #./build_sysroot/build_sysroot.sh --release
55
56 pushd regex
57 echo "[TEST] rust-lang/regex example shootout-regex-dna"
58 ../cargo.sh clean
59 # Make sure `[codegen mono items] start` doesn't poison the diff
60 ../cargo.sh build --example shootout-regex-dna
61 cat examples/regexdna-input.txt | ../cargo.sh run --example shootout-regex-dna > res.txt
62 diff -u res.txt examples/regexdna-output.txt
63
64 echo "[TEST] rust-lang/regex tests"
65 ../cargo.sh test --tests -- --exclude-should-panic --test-threads 1 -Zunstable-options
66 popd
67
68 echo
69 echo "[BENCH COMPILE] mod_bench"
70
71 COMPILE_MOD_BENCH_INLINE="$RUSTC example/mod_bench.rs --crate-type bin -Zmir-opt-level=3 -O --crate-name mod_bench_inline"
72 COMPILE_MOD_BENCH_LLVM_0="rustc example/mod_bench.rs --crate-type bin -Copt-level=0 -o target/out/mod_bench_llvm_0 -Cpanic=abort"
73 COMPILE_MOD_BENCH_LLVM_1="rustc example/mod_bench.rs --crate-type bin -Copt-level=1 -o target/out/mod_bench_llvm_1 -Cpanic=abort"
74 COMPILE_MOD_BENCH_LLVM_2="rustc example/mod_bench.rs --crate-type bin -Copt-level=2 -o target/out/mod_bench_llvm_2 -Cpanic=abort"
75 COMPILE_MOD_BENCH_LLVM_3="rustc example/mod_bench.rs --crate-type bin -Copt-level=3 -o target/out/mod_bench_llvm_3 -Cpanic=abort"
76
77 # Use 100 runs, because a single compilations doesn't take more than ~150ms, so it isn't very slow
78 hyperfine --runs ${COMPILE_RUNS:-100} "$COMPILE_MOD_BENCH_INLINE" "$COMPILE_MOD_BENCH_LLVM_0" "$COMPILE_MOD_BENCH_LLVM_1" "$COMPILE_MOD_BENCH_LLVM_2" "$COMPILE_MOD_BENCH_LLVM_3"
79
80 echo
81 echo "[BENCH RUN] mod_bench"
82 hyperfine --runs ${RUN_RUNS:-10} ./target/out/mod_bench{,_inline} ./target/out/mod_bench_llvm_*
83
84 cat target/out/log.txt | sort | uniq -c