Run inline asm rustc tests on CI
This commit is contained in:
parent
91e5bd87e6
commit
2672876b63
@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
./y.sh build --no-unstable-features
|
./y.sh build
|
||||||
|
|
||||||
echo "[SETUP] Rust fork"
|
echo "[SETUP] Rust fork"
|
||||||
git clone https://github.com/rust-lang/rust.git || true
|
git clone https://github.com/rust-lang/rust.git || true
|
||||||
|
@ -11,16 +11,10 @@ pushd rust
|
|||||||
command -v rg >/dev/null 2>&1 || cargo install ripgrep
|
command -v rg >/dev/null 2>&1 || cargo install ripgrep
|
||||||
|
|
||||||
rm -r tests/ui/{unsized-locals/,lto/,linkage*} || true
|
rm -r tests/ui/{unsized-locals/,lto/,linkage*} || true
|
||||||
for test in $(rg --files-with-matches "lto|// needs-asm-support" tests/{codegen-units,ui,incremental}); do
|
for test in $(rg --files-with-matches "lto" tests/{codegen-units,ui,incremental}); do
|
||||||
rm $test
|
rm $test
|
||||||
done
|
done
|
||||||
|
|
||||||
for test in tests/run-make/**/Makefile; do
|
|
||||||
if rg "# needs-asm-support" $test >/dev/null; then
|
|
||||||
rm -r $(dirname $test)
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
for test in $(rg -i --files-with-matches "//(\[\w+\])?~[^\|]*\s*ERR|// error-pattern:|// build-fail|// run-fail|-Cllvm-args" tests/ui); do
|
for test in $(rg -i --files-with-matches "//(\[\w+\])?~[^\|]*\s*ERR|// error-pattern:|// build-fail|// run-fail|-Cllvm-args" tests/ui); do
|
||||||
rm $test
|
rm $test
|
||||||
done
|
done
|
||||||
@ -36,8 +30,9 @@ rm tests/ui/parser/unclosed-delimiter-in-dep.rs # submodule contains //~ERROR
|
|||||||
rm -r tests/run-make/comment-section # cg_clif doesn't yet write the .comment section
|
rm -r tests/run-make/comment-section # cg_clif doesn't yet write the .comment section
|
||||||
|
|
||||||
# requires stack unwinding
|
# requires stack unwinding
|
||||||
# FIXME add needs-unwind to this test
|
# FIXME add needs-unwind to these tests
|
||||||
rm -r tests/run-make/libtest-junit
|
rm -r tests/run-make/libtest-junit
|
||||||
|
rm tests/ui/asm/may_unwind.rs
|
||||||
|
|
||||||
# extra warning about -Cpanic=abort for proc macros
|
# extra warning about -Cpanic=abort for proc macros
|
||||||
rm tests/ui/proc-macro/crt-static.rs
|
rm tests/ui/proc-macro/crt-static.rs
|
||||||
@ -78,6 +73,8 @@ rm -r tests/run-make/symbols-include-type-name # --emit=asm not supported
|
|||||||
rm -r tests/run-make/target-specs # i686 not supported by Cranelift
|
rm -r tests/run-make/target-specs # i686 not supported by Cranelift
|
||||||
rm -r tests/run-make/mismatching-target-triples # same
|
rm -r tests/run-make/mismatching-target-triples # same
|
||||||
rm -r tests/run-make/use-extern-for-plugins # same
|
rm -r tests/run-make/use-extern-for-plugins # same
|
||||||
|
rm tests/ui/asm/x86_64/issue-82869.rs # vector regs in inline asm not yet supported
|
||||||
|
rm tests/ui/asm/x86_64/issue-96797.rs # const and sym inline asm operands don't work entirely correctly
|
||||||
|
|
||||||
# requires LTO
|
# requires LTO
|
||||||
rm -r tests/run-make/cdylib
|
rm -r tests/run-make/cdylib
|
||||||
|
Loading…
Reference in New Issue
Block a user