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