rust/test.sh

82 lines
3 KiB
Bash
Raw Normal View History

2018-08-10 19:09:21 +02:00
#!/bin/bash
2019-07-30 14:51:05 +02:00
set -e
if [[ "$1" == "--release" ]]; then
export CHANNEL='release'
cargo build --release
else
export CHANNEL='debug'
cargo build
fi
source config.sh
2018-08-31 19:50:26 +02:00
rm -r target/out || true
2018-08-15 16:17:59 +02:00
mkdir -p target/out/clif
2018-09-09 14:45:23 +02:00
echo "[BUILD] mini_core"
2019-06-11 16:59:42 +02:00
$RUSTC example/mini_core.rs --crate-name mini_core --crate-type dylib
2018-11-02 20:09:52 +01:00
echo "[BUILD] example"
2019-02-11 15:42:28 +01:00
$RUSTC example/example.rs --crate-type lib
2018-09-09 14:45:23 +02:00
echo "[JIT] mini_core_hello_world"
SHOULD_RUN=1 JIT_ARGS="abc bcd" $RUSTC --crate-type bin example/mini_core_hello_world.rs --cfg jit
2018-09-09 14:45:23 +02:00
echo "[AOT] mini_core_hello_world"
2019-02-11 15:42:28 +01:00
$RUSTC example/mini_core_hello_world.rs --crate-name mini_core_hello_world --crate-type bin
./target/out/mini_core_hello_world abc bcd
2018-08-15 15:23:28 +02:00
echo "[AOT] arbitrary_self_types_pointers_and_wrappers"
$RUSTC example/arbitrary_self_types_pointers_and_wrappers.rs --crate-name arbitrary_self_types_pointers_and_wrappers --crate-type bin
./target/out/arbitrary_self_types_pointers_and_wrappers
echo "[BUILD] sysroot"
time ./build_sysroot/build_sysroot.sh
2018-10-08 19:40:06 +02:00
2019-02-11 15:28:56 +01:00
echo "[BUILD+RUN] alloc_example"
$RUSTC example/alloc_example.rs --crate-type bin
2019-02-11 15:28:56 +01:00
./target/out/alloc_example
2018-11-05 18:42:43 +01:00
2019-02-11 19:40:07 +01:00
echo "[BUILD+RUN] std_example"
$RUSTC example/std_example.rs --crate-type bin
2019-02-11 19:40:07 +01:00
./target/out/std_example
echo "[BUILD] mod_bench"
$RUSTC example/mod_bench.rs --crate-type bin
2019-02-11 19:40:07 +01:00
# FIXME linker gives multiple definitions error on Linux
#echo "[BUILD] sysroot in release mode"
#./build_sysroot/build_sysroot.sh --release
pushd regex
echo "[TEST] rust-lang/regex example shootout-regex-dna"
../cargo.sh clean
# Make sure `[codegen mono items] start` doesn't poison the diff
../cargo.sh build --example shootout-regex-dna
cat examples/regexdna-input.txt | ../cargo.sh run --example shootout-regex-dna > res.txt
diff -u res.txt examples/regexdna-output.txt
2019-08-10 14:06:08 +02:00
echo "[TEST] rust-lang/regex tests"
2019-08-09 14:33:59 +02:00
../cargo.sh test --tests -- --exclude-should-panic --test-threads 1 -Zunstable-options
popd
2019-08-10 14:06:08 +02:00
echo
echo "[BENCH COMPILE] mod_bench"
COMPILE_MOD_BENCH_INLINE="$RUSTC example/mod_bench.rs --crate-type bin -Zmir-opt-level=3 -O --crate-name mod_bench_inline"
2018-11-16 18:39:31 +01:00
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"
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"
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"
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"
# Use 100 runs, because a single compilations doesn't take more than ~150ms, so it isn't very slow
2019-08-10 14:06:08 +02:00
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"
2018-11-05 18:42:43 +01:00
echo
2019-08-10 14:06:08 +02:00
echo "[BENCH RUN] mod_bench"
hyperfine --runs ${RUN_RUNS:-10} ./target/out/mod_bench{,_inline} ./target/out/mod_bench_llvm_*
2018-11-05 18:42:43 +01:00
2018-08-23 11:03:43 +02:00
cat target/out/log.txt | sort | uniq -c