|
63 | 63 | VERSION_STAMP_PATH, GetPackageVersionForBuild)
|
64 | 64 |
|
65 | 65 | EXCLUDED_TESTS = [
|
66 |
| - # Temporarily disabled due to https://github.com/rust-lang/rust/issues/94322 |
67 |
| - os.path.join('tests', 'ui', 'numeric', 'numeric-cast.rs'), |
68 |
| - # Temporarily disabled due to https://github.com/rust-lang/rust/issues/96497 |
| 66 | + # https://github.com/rust-lang/rust/issues/45222 which appears to have |
| 67 | + # regressed as of a recent LLVM update. This test is purely performance |
| 68 | + # related, not correctness. |
| 69 | + os.path.join('tests', 'codegen', 'issue-45222.rs'), |
| 70 | + # https://github.com/rust-lang/rust/issues/96497 |
69 | 71 | os.path.join('tests', 'codegen', 'issue-96497-slice-size-nowrap.rs'),
|
70 | 72 | # TODO(crbug.com/1347563): Re-enable when fixed.
|
71 | 73 | os.path.join('tests', 'codegen', 'sanitizer-cfi-emit-type-checks.rs'),
|
72 | 74 | os.path.join('tests', 'codegen',
|
73 | 75 | 'sanitizer-cfi-emit-type-metadata-itanium-cxx-abi.rs'),
|
74 |
| - # Temporarily disabled due to https://github.com/rust-lang/rust/issues/45222 |
75 |
| - # which appears to have regressed as of a recent LLVM update. This test is |
76 |
| - # purely performance related, not correctness. |
77 |
| - os.path.join('tests', 'codegen', 'issue-45222.rs') |
| 76 | + # https://github.com/rust-lang/rust/issues/109671 the test is being |
| 77 | + # optimized in newer LLVM which breaks its expectations. |
| 78 | + os.path.join('tests', 'ui', 'abi', 'stack-protector.rs'), |
| 79 | + # https://github.com/rust-lang/rust/issues/109672 the second panic in a |
| 80 | + # double-panic is being optimized out (reasonably correctly) by newer LLVM. |
| 81 | + os.path.join('tests', 'ui', 'backtrace.rs'), |
| 82 | + # https://github.com/rust-lang/rust/issues/94322 large output from |
| 83 | + # compiletests is breaking json parsing of the results. |
| 84 | + os.path.join('tests', 'ui', 'numeric', 'numeric-cast.rs'), |
78 | 85 | ]
|
79 | 86 | EXCLUDED_TESTS_WINDOWS = [
|
80 | 87 | # https://github.com/rust-lang/rust/issues/96464
|
|
0 commit comments