]> git.lizzy.rs Git - rust.git/blob - test.sh
4f393ad179720cf83bea794250d515f5b9587eba
[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 $CG_CLIF_COMPILE_FLAGS
8 else
9     export CHANNEL='debug'
10     cargo build $CG_CLIF_COMPILE_FLAGS
11 fi
12
13 source config.sh
14
15 jit() {
16     if [[ `uname` == 'Darwin' ]]; then
17         # FIXME(#671) `dlsym` returns "symbol not found" for existing symbols on macOS.
18         echo "[JIT] $1 (Ignored on macOS)"
19     else
20         echo "[JIT] $1"
21         SHOULD_RUN=1 $RUSTC --crate-type bin -Cprefer-dynamic $2
22     fi
23 }
24
25 rm -r target/out || true
26 mkdir -p target/out/clif
27
28 echo "[BUILD] mini_core"
29 $RUSTC example/mini_core.rs --crate-name mini_core --crate-type lib,dylib
30
31 echo "[BUILD] example"
32 $RUSTC example/example.rs --crate-type lib
33
34 #JIT_ARGS="abc bcd" jit mini_core_hello_world example/mini_core_hello_world.rs
35
36 echo "[AOT] mini_core_hello_world"
37 $RUSTC example/mini_core_hello_world.rs --crate-name mini_core_hello_world --crate-type bin -g
38 ./target/out/mini_core_hello_world abc bcd
39 if lldb -v; then
40 (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
41 fi
42
43 exit 1
44
45 echo "[AOT] arbitrary_self_types_pointers_and_wrappers"
46 $RUSTC example/arbitrary_self_types_pointers_and_wrappers.rs --crate-name arbitrary_self_types_pointers_and_wrappers --crate-type bin
47 ./target/out/arbitrary_self_types_pointers_and_wrappers
48
49 echo "[BUILD] sysroot"
50 time ./build_sysroot/build_sysroot.sh
51
52 echo "[AOT] alloc_example"
53 $RUSTC example/alloc_example.rs --crate-type bin
54 ./target/out/alloc_example
55
56 jit std_example example/std_example.rs
57
58 echo "[AOT] dst_field_align"
59 $RUSTC example/dst-field-align.rs -Zmir-opt-level=2 --crate-name dst_field_align --crate-type bin
60 ./target/out/dst_field_align
61
62 echo "[AOT] std_example"
63 $RUSTC example/std_example.rs --crate-type bin
64 ./target/out/std_example
65
66 echo "[BUILD] mod_bench"
67 $RUSTC example/mod_bench.rs --crate-type bin
68
69 # FIXME linker gives multiple definitions error on Linux
70 #echo "[BUILD] sysroot in release mode"
71 #./build_sysroot/build_sysroot.sh --release
72
73 pushd simple-raytracer
74 echo "[BENCH COMPILE] ebobby/simple-raytracer"
75 hyperfine --runs ${RUN_RUNS:-10} --warmup 1 --prepare "rm -r target/*/debug || true" \
76     "RUSTFLAGS='' cargo build --target $TARGET_TRIPLE" \
77     "../cargo.sh build"
78
79 echo "[BENCH RUN] ebobby/simple-raytracer"
80 cp ./target/*/debug/main ./raytracer_cg_clif
81 hyperfine --runs ${RUN_RUNS:-10} ./raytracer_cg_llvm ./raytracer_cg_clif
82 popd
83
84 pushd build_sysroot/sysroot_src/src/libcore/tests
85 rm -r sysroot_src/src/**/*/target/ || true
86 cargo test
87 popd
88
89 pushd regex
90 echo "[TEST] rust-lang/regex example shootout-regex-dna"
91 ../cargo.sh clean
92 # Make sure `[codegen mono items] start` doesn't poison the diff
93 ../cargo.sh build --example shootout-regex-dna
94 cat examples/regexdna-input.txt | ../cargo.sh run --example shootout-regex-dna > res.txt
95 diff -u res.txt examples/regexdna-output.txt
96
97 echo "[TEST] rust-lang/regex tests"
98 ../cargo.sh test --tests -- --exclude-should-panic --test-threads 1 -Zunstable-options
99 popd
100
101 echo
102 echo "[BENCH COMPILE] mod_bench"
103
104 COMPILE_MOD_BENCH_INLINE="$RUSTC example/mod_bench.rs --crate-type bin -Zmir-opt-level=3 -O --crate-name mod_bench_inline"
105 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"
106 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"
107 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"
108 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"
109
110 # Use 100 runs, because a single compilations doesn't take more than ~150ms, so it isn't very slow
111 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"
112
113 echo
114 echo "[BENCH RUN] mod_bench"
115 hyperfine --runs ${RUN_RUNS:-10} ./target/out/mod_bench{,_inline} ./target/out/mod_bench_llvm_*