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