blob: c6c4956e4817446aa580f20ab89d9dbce41ead0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/bash
set -e
export RUSTFLAGS="-Zrun_dsymutil=no"
./build.sh --without-sysroot "$@"
rm -r target/out || true
scripts/tests.sh no_sysroot
./build.sh "$@"
scripts/tests.sh base_sysroot
scripts/tests.sh extended_sysroot
|