]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_codegen_gcc/test.sh
Merge commit '0c89065b934397b62838fe3e4ef6f6352fc52daf' into libgccjit-codegen
[rust.git] / compiler / rustc_codegen_gcc / test.sh
1 #!/bin/bash
2
3 # TODO: rewrite to cargo-make (or just) or something like that to only rebuild the sysroot when needed?
4
5 #set -x
6 set -e
7
8 export GCC_PATH=$(cat gcc_path)
9
10 export LD_LIBRARY_PATH="$GCC_PATH"
11 export LIBRARY_PATH="$GCC_PATH"
12
13 if [[ "$1" == "--release" ]]; then
14     export CHANNEL='release'
15     CARGO_INCREMENTAL=1 cargo rustc --release
16 else
17     echo $LD_LIBRARY_PATH
18     export CHANNEL='debug'
19     cargo rustc
20 fi
21
22 source config.sh
23
24 rm -r target/out || true
25 mkdir -p target/out/gccjit
26
27 echo "[BUILD] mini_core"
28 $RUSTC example/mini_core.rs --crate-name mini_core --crate-type lib,dylib --target $TARGET_TRIPLE
29
30 echo "[BUILD] example"
31 $RUSTC example/example.rs --crate-type lib --target $TARGET_TRIPLE
32
33 #if [[ "$HOST_TRIPLE" = "$TARGET_TRIPLE" ]]; then
34     #echo "[JIT] mini_core_hello_world"
35     #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
36 #else
37     #echo "[JIT] mini_core_hello_world (skipped)"
38 #fi
39
40 echo "[AOT] mini_core_hello_world"
41 $RUSTC example/mini_core_hello_world.rs --crate-name mini_core_hello_world --crate-type bin -g --target $TARGET_TRIPLE
42 $RUN_WRAPPER ./target/out/mini_core_hello_world abc bcd
43 # (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
44
45 echo "[BUILD] sysroot"
46 time ./build_sysroot/build_sysroot.sh
47
48 echo "[AOT] arbitrary_self_types_pointers_and_wrappers"
49 $RUSTC example/arbitrary_self_types_pointers_and_wrappers.rs --crate-name arbitrary_self_types_pointers_and_wrappers --crate-type bin --target $TARGET_TRIPLE
50 $RUN_WRAPPER ./target/out/arbitrary_self_types_pointers_and_wrappers
51
52 echo "[AOT] alloc_system"
53 $RUSTC example/alloc_system.rs --crate-type lib --target "$TARGET_TRIPLE"
54
55 # FIXME: this requires linking an additional lib for __popcountdi2
56 #echo "[AOT] alloc_example"
57 #$RUSTC example/alloc_example.rs --crate-type bin --target $TARGET_TRIPLE
58 #$RUN_WRAPPER ./target/out/alloc_example
59
60 #if [[ "$HOST_TRIPLE" = "$TARGET_TRIPLE" ]]; then
61     #echo "[JIT] std_example"
62     #CG_CLIF_JIT=1 $RUSTC --crate-type bin -Cprefer-dynamic example/std_example.rs --target $HOST_TRIPLE
63 #else
64     #echo "[JIT] std_example (skipped)"
65 #fi
66
67 echo "[AOT] dst_field_align"
68 # FIXME Re-add -Zmir-opt-level=2 once rust-lang/rust#67529 is fixed.
69 $RUSTC example/dst-field-align.rs --crate-name dst_field_align --crate-type bin --target $TARGET_TRIPLE
70 $RUN_WRAPPER ./target/out/dst_field_align || (echo $?; false)
71
72 echo "[AOT] std_example"
73 $RUSTC example/std_example.rs --crate-type bin --target $TARGET_TRIPLE
74 $RUN_WRAPPER ./target/out/std_example --target $TARGET_TRIPLE
75
76 echo "[AOT] subslice-patterns-const-eval"
77 $RUSTC example/subslice-patterns-const-eval.rs --crate-type bin -Cpanic=abort --target $TARGET_TRIPLE
78 $RUN_WRAPPER ./target/out/subslice-patterns-const-eval
79
80 echo "[AOT] track-caller-attribute"
81 $RUSTC example/track-caller-attribute.rs --crate-type bin -Cpanic=abort --target $TARGET_TRIPLE
82 $RUN_WRAPPER ./target/out/track-caller-attribute
83
84 # FIXME: this requires linking an additional lib for __popcountdi2
85 #echo "[BUILD] mod_bench"
86 #$RUSTC example/mod_bench.rs --crate-type bin --target $TARGET_TRIPLE
87
88 # FIXME linker gives multiple definitions error on Linux
89 #echo "[BUILD] sysroot in release mode"
90 #./build_sysroot/build_sysroot.sh --release
91
92 #pushd simple-raytracer
93 #if [[ "$HOST_TRIPLE" = "$TARGET_TRIPLE" ]]; then
94     #echo "[BENCH COMPILE] ebobby/simple-raytracer"
95     #hyperfine --runs ${RUN_RUNS:-10} --warmup 1 --prepare "rm -r target/*/debug || true" \
96     #"RUSTFLAGS='' cargo build --target $TARGET_TRIPLE" \
97     #"../cargo.sh build"
98
99     #echo "[BENCH RUN] ebobby/simple-raytracer"
100     #cp ./target/*/debug/main ./raytracer_cg_gccjit
101     #hyperfine --runs ${RUN_RUNS:-10} ./raytracer_cg_llvm ./raytracer_cg_gccjit
102 #else
103     #echo "[BENCH COMPILE] ebobby/simple-raytracer (skipped)"
104     #echo "[COMPILE] ebobby/simple-raytracer"
105     #../cargo.sh build
106     #echo "[BENCH RUN] ebobby/simple-raytracer (skipped)"
107 #fi
108 #popd
109
110 pushd build_sysroot/sysroot_src/library/core/tests
111 echo "[TEST] libcore"
112 rm -r ./target || true
113 ../../../../../cargo.sh test
114 popd
115
116 #pushd regex
117 #echo "[TEST] rust-lang/regex example shootout-regex-dna"
118 #../cargo.sh clean
119 ## Make sure `[codegen mono items] start` doesn't poison the diff
120 #../cargo.sh build --example shootout-regex-dna
121 #cat examples/regexdna-input.txt | ../cargo.sh run --example shootout-regex-dna | grep -v "Spawned thread" > res.txt
122 #diff -u res.txt examples/regexdna-output.txt
123
124 #echo "[TEST] rust-lang/regex tests"
125 #../cargo.sh test --tests -- --exclude-should-panic --test-threads 1 -Zunstable-options
126 #popd
127
128 #echo
129 #echo "[BENCH COMPILE] mod_bench"
130
131 #COMPILE_MOD_BENCH_INLINE="$RUSTC example/mod_bench.rs --crate-type bin -Zmir-opt-level=3 -O --crate-name mod_bench_inline"
132 #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"
133 #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"
134 #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"
135 #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"
136
137 ## Use 100 runs, because a single compilations doesn't take more than ~150ms, so it isn't very slow
138 #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"
139
140 #echo
141 #echo "[BENCH RUN] mod_bench"
142 #hyperfine --runs ${RUN_RUNS:-10} ./target/out/mod_bench{,_inline} ./target/out/mod_bench_llvm_*
143
144 echo
145 echo "[TEST] rust-lang/rust"
146
147 rust_toolchain=$(cat rust-toolchain)
148
149 git clone https://github.com/rust-lang/rust.git || true
150 cd rust
151 git fetch
152 git checkout $(rustc -V | cut -d' ' -f3 | tr -d '(')
153 export RUSTFLAGS=
154
155 #git apply ../rust_lang.patch
156
157
158 rm config.toml || true
159
160 cat > config.toml <<EOF
161 [rust]
162 codegen-backends = []
163
164 [build]
165 cargo = "$(which cargo)"
166 local-rebuild = true
167 rustc = "$HOME/.rustup/toolchains/$rust_toolchain-$TARGET_TRIPLE/bin/rustc"
168 EOF
169
170 rustc -V | cut -d' ' -f3 | tr -d '('
171 git checkout $(rustc -V | cut -d' ' -f3 | tr -d '(') src/test
172
173 for test in $(rg -i --files-with-matches "//(\[\w+\])?~|// error-pattern:|// build-fail|// run-fail|-Cllvm-args" src/test/ui); do
174   rm $test
175 done
176
177 git checkout -- src/test/ui/issues/auxiliary/issue-3136-a.rs # contains //~ERROR, but shouldn't be removed
178
179 rm -r src/test/ui/{abi*,extern/,panic-runtime/,panics/,unsized-locals/,proc-macro/,threads-sendsync/,thinlto/,simd*,borrowck/,test*,*lto*.rs} || true
180 for test in $(rg --files-with-matches "catch_unwind|should_panic|thread|lto" src/test/ui); do
181   rm $test
182 done
183 git checkout src/test/ui/type-alias-impl-trait/auxiliary/cross_crate_ice.rs
184 git checkout src/test/ui/type-alias-impl-trait/auxiliary/cross_crate_ice2.rs
185 rm src/test/ui/llvm-asm/llvm-asm-in-out-operand.rs || true # TODO: Enable back this test if I ever implement the llvm_asm! macro.
186 #rm src/test/ui/consts/const-size_of-cycle.rs || true # Error file path difference
187 #rm src/test/ui/impl-trait/impl-generic-mismatch.rs || true # ^
188 #rm src/test/ui/type_length_limit.rs || true
189 #rm src/test/ui/issues/issue-50993.rs || true # Target `thumbv7em-none-eabihf` is not supported
190 #rm src/test/ui/macros/same-sequence-span.rs || true # Proc macro .rustc section not found?
191 #rm src/test/ui/suggestions/issue-61963.rs || true # ^
192
193 RUSTC_ARGS="-Zpanic-abort-tests -Zcodegen-backend="$(pwd)"/../target/"$CHANNEL"/librustc_codegen_gcc."$dylib_ext" --sysroot "$(pwd)"/../build_sysroot/sysroot -Cpanic=abort"
194
195 echo "[TEST] rustc test suite"
196 # TODO: remove excluded tests when they stop stalling.
197 COMPILETEST_FORCE_STAGE0=1 ./x.py test --run always --stage 0 src/test/ui/ --rustc-args "$RUSTC_ARGS" --exclude src/test/ui/numbers-arithmetic/saturating-float-casts.rs --exclude src/test/ui/issues/issue-50811.rs