Skip to content

Commit 9f5b520

Browse files
committed
Filter out tests marked with needs-asm-support
1 parent d1f1641 commit 9f5b520

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/test_rustc_tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ pushd rust
1111
cargo install ripgrep
1212

1313
rm -r src/test/ui/{extern/,panics/,unsized-locals/,thinlto/,simd*,*lto*.rs,linkage*,unwind-*.rs} || true
14-
for test in $(rg --files-with-matches "asm!|catch_unwind|should_panic|lto" src/test/ui); do
14+
for test in $(rg --files-with-matches "asm!|catch_unwind|should_panic|lto|// needs-asm-support" src/test/ui); do
1515
rm $test
1616
done
1717

0 commit comments

Comments
 (0)