diff options
| author | antoyo <antoyo@users.noreply.github.com> | 2022-03-08 08:43:43 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-08 08:43:43 -0500 |
| commit | 0cff1d03316deea538fc66ea572d7e02ad1a6d29 (patch) | |
| tree | 439e07b38996994b57a68eabe4dc078781835bf6 | |
| parent | f4ea709249eebe308eb193d18d2ba82620724486 (diff) | |
| parent | 7c1f863d74cf8e2c1eb039a38e1d6e9d62b9f390 (diff) | |
| download | rust-0cff1d03316deea538fc66ea572d7e02ad1a6d29.tar.gz rust-0cff1d03316deea538fc66ea572d7e02ad1a6d29.zip | |
Merge pull request #136 from light4/clean_test
Stop removing the llvm-asm tests in test.sh since they don't exist anymore
| -rwxr-xr-x | test.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test.sh b/test.sh index ebe663a0b74..1a5b89d3704 100755 --- a/test.sh +++ b/test.sh @@ -187,13 +187,12 @@ EOF git checkout -- src/test/ui/issues/auxiliary/issue-3136-a.rs # contains //~ERROR, but shouldn't be removed - 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 + rm -r src/test/ui/{abi*,extern/,panic-runtime/,panics/,unsized-locals/,proc-macro/,threads-sendsync/,thinlto/,simd*,borrowck/,test*,*lto*.rs} || true for test in $(rg --files-with-matches "catch_unwind|should_panic|thread|lto" src/test/ui); do rm $test done git checkout src/test/ui/type-alias-impl-trait/auxiliary/cross_crate_ice.rs git checkout src/test/ui/type-alias-impl-trait/auxiliary/cross_crate_ice2.rs - 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. RUSTC_ARGS="-Zpanic-abort-tests -Csymbol-mangling-version=v0 -Zcodegen-backend="$(pwd)"/../target/"$CHANNEL"/librustc_codegen_gcc."$dylib_ext" --sysroot "$(pwd)"/../build_sysroot/sysroot -Cpanic=abort" |
