]> git.lizzy.rs Git - rust.git/blob - scripts/tests.sh
Merge commit '9a0c32934ebe376128230aa8da3275697b2053e7' into sync_cg_clif-2021-03-05
[rust.git] / scripts / tests.sh
1 #!/usr/bin/env bash
2
3 set -e
4
5 source build/config.sh
6 source scripts/ext_config.sh
7 MY_RUSTC="$RUSTC $RUSTFLAGS -L crate=target/out --out-dir target/out -Cdebuginfo=2"
8
9 function no_sysroot_tests() {
10     echo "[BUILD] mini_core"
11     $MY_RUSTC example/mini_core.rs --crate-name mini_core --crate-type lib,dylib --target "$TARGET_TRIPLE"
12
13     echo "[BUILD] example"
14     $MY_RUSTC example/example.rs --crate-type lib --target "$TARGET_TRIPLE"
15
16     if [[ "$JIT_SUPPORTED" = "1" ]]; then
17         echo "[JIT] mini_core_hello_world"
18         CG_CLIF_JIT_ARGS="abc bcd" $MY_RUSTC -Cllvm-args=mode=jit -Cprefer-dynamic example/mini_core_hello_world.rs --cfg jit --target "$HOST_TRIPLE"
19
20         echo "[JIT-lazy] mini_core_hello_world"
21         CG_CLIF_JIT_ARGS="abc bcd" $MY_RUSTC -Cllvm-args=mode=jit-lazy -Cprefer-dynamic example/mini_core_hello_world.rs --cfg jit --target "$HOST_TRIPLE"
22     else
23         echo "[JIT] mini_core_hello_world (skipped)"
24     fi
25
26     echo "[AOT] mini_core_hello_world"
27     $MY_RUSTC example/mini_core_hello_world.rs --crate-name mini_core_hello_world --crate-type bin -g --target "$TARGET_TRIPLE"
28     $RUN_WRAPPER ./target/out/mini_core_hello_world abc bcd
29     # (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
30 }
31
32 function base_sysroot_tests() {
33     echo "[AOT] arbitrary_self_types_pointers_and_wrappers"
34     $MY_RUSTC example/arbitrary_self_types_pointers_and_wrappers.rs --crate-name arbitrary_self_types_pointers_and_wrappers --crate-type bin --target "$TARGET_TRIPLE"
35     $RUN_WRAPPER ./target/out/arbitrary_self_types_pointers_and_wrappers
36
37     echo "[AOT] alloc_system"
38     $MY_RUSTC example/alloc_system.rs --crate-type lib --target "$TARGET_TRIPLE"
39
40     echo "[AOT] alloc_example"
41     $MY_RUSTC example/alloc_example.rs --crate-type bin --target "$TARGET_TRIPLE"
42     $RUN_WRAPPER ./target/out/alloc_example
43
44     if [[ "$JIT_SUPPORTED" = "1" ]]; then
45         echo "[JIT] std_example"
46         $MY_RUSTC -Cllvm-args=mode=jit -Cprefer-dynamic example/std_example.rs --target "$HOST_TRIPLE"
47
48         echo "[JIT-lazy] std_example"
49         $MY_RUSTC -Cllvm-args=mode=jit-lazy -Cprefer-dynamic example/std_example.rs --cfg lazy_jit --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     $MY_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     $MY_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     $MY_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     $MY_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 "[AOT] mod_bench"
72     $MY_RUSTC example/mod_bench.rs --crate-type bin --target "$TARGET_TRIPLE"
73     $RUN_WRAPPER ./target/out/mod_bench
74
75     pushd rand
76     rm -r ./target || true
77     ../build/cargo.sh test --workspace
78     popd
79 }
80
81 function extended_sysroot_tests() {
82     pushd simple-raytracer
83     if [[ "$HOST_TRIPLE" = "$TARGET_TRIPLE" ]]; then
84         echo "[BENCH COMPILE] ebobby/simple-raytracer"
85         hyperfine --runs "${RUN_RUNS:-10}" --warmup 1 --prepare "cargo clean" \
86         "RUSTC=rustc RUSTFLAGS='' cargo build" \
87         "../build/cargo.sh build"
88
89         echo "[BENCH RUN] ebobby/simple-raytracer"
90         cp ./target/debug/main ./raytracer_cg_clif
91         hyperfine --runs "${RUN_RUNS:-10}" ./raytracer_cg_llvm ./raytracer_cg_clif
92     else
93         echo "[BENCH COMPILE] ebobby/simple-raytracer (skipped)"
94         echo "[COMPILE] ebobby/simple-raytracer"
95         ../cargo.sh build
96         echo "[BENCH RUN] ebobby/simple-raytracer (skipped)"
97     fi
98     popd
99
100     pushd build_sysroot/sysroot_src/library/core/tests
101     echo "[TEST] libcore"
102     rm -r ./target || true
103     ../../../../../build/cargo.sh test
104     popd
105
106     pushd regex
107     echo "[TEST] rust-lang/regex example shootout-regex-dna"
108     ../build/cargo.sh clean
109     # Make sure `[codegen mono items] start` doesn't poison the diff
110     ../build/cargo.sh build --example shootout-regex-dna
111     cat examples/regexdna-input.txt | ../build/cargo.sh run --example shootout-regex-dna | grep -v "Spawned thread" > res.txt
112     diff -u res.txt examples/regexdna-output.txt
113
114     echo "[TEST] rust-lang/regex tests"
115     ../build/cargo.sh test --tests -- --exclude-should-panic --test-threads 1 -Zunstable-options -q
116     popd
117 }
118
119 case "$1" in
120     "no_sysroot")
121         no_sysroot_tests
122         ;;
123     "base_sysroot")
124         base_sysroot_tests
125         ;;
126     "extended_sysroot")
127         extended_sysroot_tests
128         ;;
129     *)
130         echo "unknown test suite"
131         ;;
132 esac