2022-04-14 07:18:13 -05:00
|
|
|
#!/usr/bin/env bash
|
2021-03-15 08:49:57 -05:00
|
|
|
set -e
|
|
|
|
|
|
|
|
cd $(dirname "$0")/../
|
|
|
|
|
|
|
|
source ./scripts/setup_rust_fork.sh
|
|
|
|
|
|
|
|
echo "[TEST] Test suite of rustc"
|
|
|
|
pushd rust
|
|
|
|
|
2022-02-06 08:13:29 -06:00
|
|
|
command -v rg >/dev/null 2>&1 || cargo install ripgrep
|
2021-03-15 08:49:57 -05:00
|
|
|
|
2023-01-05 02:45:44 -06:00
|
|
|
rm -r tests/ui/{extern/,unsized-locals/,lto/,linkage*} || true
|
2023-01-20 05:22:21 -06:00
|
|
|
for test in $(rg --files-with-matches "lto|// needs-asm-support|// needs-unwind" tests/{codegen-units,ui,incremental}); do
|
2021-03-15 08:49:57 -05:00
|
|
|
rm $test
|
|
|
|
done
|
|
|
|
|
2023-01-05 02:45:44 -06:00
|
|
|
for test in $(rg -i --files-with-matches "//(\[\w+\])?~[^\|]*\s*ERR|// error-pattern:|// build-fail|// run-fail|-Cllvm-args" tests/ui); do
|
2021-03-15 08:49:57 -05:00
|
|
|
rm $test
|
|
|
|
done
|
|
|
|
|
2023-01-05 02:45:44 -06:00
|
|
|
git checkout -- tests/ui/issues/auxiliary/issue-3136-a.rs # contains //~ERROR, but shouldn't be removed
|
|
|
|
git checkout -- tests/ui/proc-macro/pretty-print-hack/
|
2021-03-15 08:49:57 -05:00
|
|
|
|
2022-03-18 10:38:28 -05:00
|
|
|
# missing features
|
|
|
|
# ================
|
|
|
|
|
|
|
|
# requires stack unwinding
|
2023-01-05 02:45:44 -06:00
|
|
|
rm tests/incremental/change_crate_dep_kind.rs
|
|
|
|
rm tests/incremental/issue-80691-bad-eval-cache.rs # -Cpanic=abort causes abort instead of exit(101)
|
2021-03-15 08:49:57 -05:00
|
|
|
|
2022-03-18 10:38:28 -05:00
|
|
|
# requires compiling with -Cpanic=unwind
|
2023-01-05 02:45:44 -06:00
|
|
|
rm -r tests/ui/macros/rfc-2011-nicer-assert-messages/
|
|
|
|
rm -r tests/run-make/test-benches
|
2023-01-20 05:22:21 -06:00
|
|
|
rm tests/ui/test-attrs/test-type.rs
|
2022-03-18 10:38:28 -05:00
|
|
|
|
|
|
|
# vendor intrinsics
|
2023-01-05 02:45:44 -06:00
|
|
|
rm tests/ui/sse2.rs # cpuid not supported, so sse2 not detected
|
|
|
|
rm tests/ui/intrinsics/const-eval-select-x86_64.rs # requires x86_64 vendor intrinsics
|
|
|
|
rm tests/ui/simd/array-type.rs # "Index argument for `simd_insert` is not a constant"
|
|
|
|
rm tests/ui/simd/intrinsic/float-math-pass.rs # simd_fcos unimplemented
|
2022-03-18 10:38:28 -05:00
|
|
|
|
|
|
|
# exotic linkages
|
2023-01-05 02:45:44 -06:00
|
|
|
rm tests/ui/issues/issue-33992.rs # unsupported linkages
|
|
|
|
rm tests/incremental/hashes/function_interfaces.rs # same
|
|
|
|
rm tests/incremental/hashes/statics.rs # same
|
2022-03-18 10:38:28 -05:00
|
|
|
|
|
|
|
# variadic arguments
|
2023-01-05 02:45:44 -06:00
|
|
|
rm tests/ui/abi/mir/mir_codegen_calls_variadic.rs # requires float varargs
|
|
|
|
rm tests/ui/abi/variadic-ffi.rs # requires callee side vararg support
|
2022-03-18 10:38:28 -05:00
|
|
|
|
|
|
|
# unsized locals
|
2023-01-05 02:45:44 -06:00
|
|
|
rm -r tests/run-pass-valgrind/unsized-locals
|
2022-03-18 10:38:28 -05:00
|
|
|
|
|
|
|
# misc unimplemented things
|
2023-01-05 02:45:44 -06:00
|
|
|
rm tests/ui/intrinsics/intrinsic-nearby.rs # unimplemented nearbyintf32 and nearbyintf64 intrinsics
|
|
|
|
rm tests/ui/target-feature/missing-plusminus.rs # error not implemented
|
|
|
|
rm tests/ui/fn/dyn-fn-alignment.rs # wants a 256 byte alignment
|
|
|
|
rm -r tests/run-make/emit-named-files # requires full --emit support
|
|
|
|
rm -r tests/run-make/repr128-dwarf # debuginfo test
|
2022-03-18 10:38:28 -05:00
|
|
|
|
|
|
|
# optimization tests
|
|
|
|
# ==================
|
2023-01-05 02:45:44 -06:00
|
|
|
rm tests/ui/codegen/issue-28950.rs # depends on stack size optimizations
|
|
|
|
rm tests/ui/codegen/init-large-type.rs # same
|
|
|
|
rm tests/ui/issues/issue-40883.rs # same
|
|
|
|
rm -r tests/run-make/fmt-write-bloat/ # tests an optimization
|
2022-03-18 10:38:28 -05:00
|
|
|
|
|
|
|
# backend specific tests
|
|
|
|
# ======================
|
2023-01-05 02:45:44 -06:00
|
|
|
rm tests/incremental/thinlto/cgu_invalidated_when_import_{added,removed}.rs # requires LLVM
|
|
|
|
rm tests/ui/abi/stack-protector.rs # requires stack protector support
|
2022-03-18 10:38:28 -05:00
|
|
|
|
|
|
|
# giving different but possibly correct results
|
|
|
|
# =============================================
|
2023-01-05 02:45:44 -06:00
|
|
|
rm tests/ui/mir/mir_misc_casts.rs # depends on deduplication of constants
|
|
|
|
rm tests/ui/mir/mir_raw_fat_ptr.rs # same
|
|
|
|
rm tests/ui/consts/issue-33537.rs # same
|
|
|
|
rm tests/ui/layout/valid_range_oob.rs # different ICE message
|
2021-03-15 08:49:57 -05:00
|
|
|
|
2023-01-20 06:08:45 -06:00
|
|
|
rm tests/ui/consts/issue-miri-1910.rs # different error message
|
|
|
|
rm tests/ui/consts/offset_ub.rs # same
|
|
|
|
rm tests/ui/intrinsics/panic-uninitialized-zeroed.rs # same
|
|
|
|
rm tests/ui/lint/lint-const-item-mutation.rs # same
|
|
|
|
rm tests/ui/pattern/usefulness/doc-hidden-non-exhaustive.rs # same
|
|
|
|
rm tests/ui/suggestions/derive-trait-for-method-call.rs # same
|
|
|
|
rm tests/ui/typeck/issue-46112.rs # same
|
|
|
|
|
|
|
|
rm tests/ui/proc-macro/crt-static.rs # extra warning about -Cpanic=abort for proc macros
|
|
|
|
rm tests/ui/proc-macro/proc-macro-deprecated-attr.rs # same
|
|
|
|
rm tests/ui/proc-macro/quote-debug.rs # same
|
|
|
|
rm tests/ui/proc-macro/no-missing-docs.rs # same
|
|
|
|
rm tests/ui/rust-2018/proc-macro-crate-in-paths.rs # same
|
|
|
|
|
2022-03-19 09:48:19 -05:00
|
|
|
# doesn't work due to the way the rustc test suite is invoked.
|
|
|
|
# should work when using ./x.py test the way it is intended
|
|
|
|
# ============================================================
|
2023-01-05 02:45:44 -06:00
|
|
|
rm -r tests/run-make/emit-shared-files # requires the rustdoc executable in dist/bin/
|
|
|
|
rm -r tests/run-make/unstable-flag-required # same
|
|
|
|
rm -r tests/run-make/rustdoc-* # same
|
|
|
|
rm -r tests/run-make/issue-88756-default-output # same
|
|
|
|
rm -r tests/run-make/remap-path-prefix-dwarf # requires llvm-dwarfdump
|
|
|
|
rm -r tests/ui/consts/missing_span_in_backtrace.rs # expects sysroot source to be elsewhere
|
2021-03-15 08:49:57 -05:00
|
|
|
|
2022-03-18 10:38:28 -05:00
|
|
|
# genuine bugs
|
|
|
|
# ============
|
2023-01-05 02:45:44 -06:00
|
|
|
rm tests/incremental/spike-neg1.rs # errors out for some reason
|
|
|
|
rm tests/incremental/spike-neg2.rs # same
|
2021-12-26 07:11:09 -06:00
|
|
|
|
2023-01-05 02:45:44 -06:00
|
|
|
rm tests/ui/simd/intrinsic/generic-reduction-pass.rs # simd_reduce_add_unordered doesn't accept an accumulator for integer vectors
|
2022-03-19 10:32:07 -05:00
|
|
|
|
2023-01-20 05:22:21 -06:00
|
|
|
rm tests/ui/simd/intrinsic/generic-as.rs # crash when accessing vector type filed (#1318)
|
|
|
|
rm tests/ui/simd/simd-bitmask.rs # crash
|
2022-12-01 08:40:48 -06:00
|
|
|
|
2023-01-20 06:08:45 -06:00
|
|
|
rm tests/ui/dyn-star/dyn-star-to-dyn.rs
|
|
|
|
rm tests/ui/dyn-star/dispatch-on-pin-mut.rs
|
|
|
|
|
2022-03-18 10:38:28 -05:00
|
|
|
# bugs in the test suite
|
|
|
|
# ======================
|
2023-01-05 02:45:44 -06:00
|
|
|
rm tests/ui/backtrace.rs # TODO warning
|
|
|
|
rm tests/ui/simple_global_asm.rs # TODO add needs-asm-support
|
|
|
|
rm tests/ui/process/nofile-limit.rs # TODO some AArch64 linking issue
|
2022-03-18 09:38:58 -05:00
|
|
|
|
2023-01-05 02:45:44 -06:00
|
|
|
rm tests/ui/stdio-is-blocking.rs # really slow with unoptimized libstd
|
2022-09-15 11:14:29 -05:00
|
|
|
|
2021-03-15 08:49:57 -05:00
|
|
|
echo "[TEST] rustc test suite"
|
2023-01-05 02:45:44 -06:00
|
|
|
RUST_TEST_NOCAPTURE=1 COMPILETEST_FORCE_STAGE0=1 ./x.py test --stage 0 tests/{codegen-units,run-make,run-pass-valgrind,ui,incremental}
|
2021-03-15 08:49:57 -05:00
|
|
|
popd
|