]> git.lizzy.rs Git - rust.git/blob - test.sh
Disable global_asm! on macOS for now
[rust.git] / test.sh
1 #!/bin/bash
2
3 set -e
4
5 if [[ "$1" == "--release" ]]; then
6     export CHANNEL='release'
7     CARGO_INCREMENTAL=1 cargo rustc --release -- -Zrun_dsymutil=no
8 else
9     export CHANNEL='debug'
10     cargo rustc -- -Zrun_dsymutil=no
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 lib,dylib --target $TARGET_TRIPLE
20
21 echo "[BUILD] example"
22 $RUSTC example/example.rs --crate-type lib --target $TARGET_TRIPLE
23
24 if [[ "$HOST_TRIPLE" = "$TARGET_TRIPLE" ]]; then
25     echo "[JIT] mini_core_hello_world"
26     CG_CLIF_JIT=1 CG_CLIF_JIT_ARGS="abc bcd" $RUSTC --crate-type bin -Cprefer-dynamic example/mini_core_hello_world.rs --cfg jit --target $HOST_TRIPLE
27 else
28     echo "[JIT] mini_core_hello_world (skipped)"
29 fi
30
31 echo "[AOT] mini_core_hello_world"
32 $RUSTC example/mini_core_hello_world.rs --crate-name mini_core_hello_world --crate-type bin -g --target $TARGET_TRIPLE
33 $RUN_WRAPPER ./target/out/mini_core_hello_world abc bcd
34 # (echo "break set -n main"; echo "run"; sleep 1; echo "si -c 10"; sleep 1; echo "frame variable") | lldb -- ./target/out/mini_core_hello_world abc bcd
35
36 echo "[AOT] arbitrary_self_types_pointers_and_wrappers"
37 $RUSTC example/arbitrary_self_types_pointers_and_wrappers.rs --crate-name arbitrary_self_types_pointers_and_wrappers --crate-type bin --target $TARGET_TRIPLE
38 $RUN_WRAPPER ./target/out/arbitrary_self_types_pointers_and_wrappers
39
40 echo "[BUILD] sysroot"
41 time ./build_sysroot/build_sysroot.sh --release
42
43 echo "[AOT] alloc_example"
44 $RUSTC example/alloc_example.rs --crate-type bin --target $TARGET_TRIPLE
45 $RUN_WRAPPER ./target/out/alloc_example
46
47 if [[ "$HOST_TRIPLE" = "$TARGET_TRIPLE" ]]; then
48     echo "[JIT] std_example"
49     CG_CLIF_JIT=1 $RUSTC --crate-type bin -Cprefer-dynamic example/std_example.rs --target $HOST_TRIPLE
50 else
51     echo "[JIT] std_example (skipped)"
52 fi
53
54 echo "[AOT] dst_field_align"
55 # FIXME Re-add -Zmir-opt-level=2 once rust-lang/rust#67529 is fixed.
56 $RUSTC example/dst-field-align.rs --crate-name dst_field_align --crate-type bin --target $TARGET_TRIPLE
57 $RUN_WRAPPER ./target/out/dst_field_align || (echo $?; false)
58
59 echo "[AOT] std_example"
60 $RUSTC example/std_example.rs --crate-type bin --target $TARGET_TRIPLE
61 $RUN_WRAPPER ./target/out/std_example arg
62
63 echo "[AOT] subslice-patterns-const-eval"
64 $RUSTC example/subslice-patterns-const-eval.rs --crate-type bin -Cpanic=abort --target $TARGET_TRIPLE
65 $RUN_WRAPPER ./target/out/subslice-patterns-const-eval
66
67 echo "[AOT] track-caller-attribute"
68 $RUSTC example/track-caller-attribute.rs --crate-type bin -Cpanic=abort --target $TARGET_TRIPLE
69 $RUN_WRAPPER ./target/out/track-caller-attribute
70
71 echo "[BUILD] mod_bench"
72 $RUSTC example/mod_bench.rs --crate-type bin --target $TARGET_TRIPLE
73
74 pushd simple-raytracer
75 if [[ "$HOST_TRIPLE" = "$TARGET_TRIPLE" ]]; then
76     echo "[BENCH COMPILE] ebobby/simple-raytracer"
77     hyperfine --runs ${RUN_RUNS:-10} --warmup 1 --prepare "rm -r target/*/debug || true" \
78     "RUSTFLAGS='' cargo build --target $TARGET_TRIPLE" \
79     "../cargo.sh build"
80
81     echo "[BENCH RUN] ebobby/simple-raytracer"
82     cp ./target/*/debug/main ./raytracer_cg_clif
83     hyperfine --runs ${RUN_RUNS:-10} ./raytracer_cg_llvm ./raytracer_cg_clif
84 else
85     echo "[BENCH COMPILE] ebobby/simple-raytracer (skipped)"
86     echo "[COMPILE] ebobby/simple-raytracer"
87     ../cargo.sh build
88     echo "[BENCH RUN] ebobby/simple-raytracer (skipped)"
89 fi
90 popd
91
92 pushd build_sysroot/sysroot_src/src/libcore/tests
93 echo "[TEST] libcore"
94 rm -r ./target || true
95 ../../../../../cargo.sh test
96 popd
97
98 pushd regex
99 echo "[TEST] rust-lang/regex example shootout-regex-dna"
100 ../cargo.sh clean
101 # Make sure `[codegen mono items] start` doesn't poison the diff
102 ../cargo.sh build --example shootout-regex-dna
103 cat examples/regexdna-input.txt | ../cargo.sh run --example shootout-regex-dna | grep -v "Spawned thread" > res.txt
104 diff -u res.txt examples/regexdna-output.txt
105
106 echo "[TEST] rust-lang/regex tests"
107 ../cargo.sh test --tests -- --exclude-should-panic --test-threads 1 -Zunstable-options
108 popd
109
110 echo
111 echo "[BENCH COMPILE] mod_bench"
112
113 COMPILE_MOD_BENCH_INLINE="$RUSTC example/mod_bench.rs --crate-type bin -Zmir-opt-level=3 -O --crate-name mod_bench_inline"
114 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"
115 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"
116 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"
117 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"
118
119 # Use 100 runs, because a single compilations doesn't take more than ~150ms, so it isn't very slow
120 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"
121
122 echo
123 echo "[BENCH RUN] mod_bench"
124 hyperfine --runs ${RUN_RUNS:-10} ./target/out/mod_bench{,_inline} ./target/out/mod_bench_llvm_*