|
1 |
| -From 378d9e451a8af1045b8cb32841198cd5ad5464a3 Mon Sep 17 00:00:00 2001 |
| 1 | +From b50dd5520723dd31e84359d8748df8d62d91512e Mon Sep 17 00:00:00 2001 |
2 | 2 |
|
3 | 3 | Date: Tue, 9 Jul 2024 11:25:14 +0000
|
4 | 4 | Subject: [PATCH] Disable broken tests
|
5 | 5 |
|
6 | 6 | ---
|
7 |
| - src/abis/mod.rs | 6 +++--- |
8 |
| - src/report.rs | 4 ++++ |
9 |
| - 2 files changed, 7 insertions(+), 3 deletions(-) |
| 7 | + src/report.rs | 24 ++++++++++++++++++++++++ |
| 8 | + 1 file changed, 24 insertions(+) |
10 | 9 |
|
11 | 10 | diff --git a/src/report.rs b/src/report.rs
|
12 |
| -index acfce38..b3ab842 100644 |
| 11 | +index 958ab43..7a66856 100644 |
13 | 12 | --- a/src/report.rs
|
14 | 13 | +++ b/src/report.rs
|
15 |
| -@@ -45,6 +45,26 @@ pub fn get_test_rules(test: &TestKey, caller: &dyn AbiImpl, callee: &dyn AbiImpl |
| 14 | +@@ -48,6 +48,30 @@ pub fn get_test_rules(test: &TestKey, caller: &dyn Toolchain, callee: &dyn Toolc |
16 | 15 | //
|
17 | 16 | // THIS AREA RESERVED FOR VENDORS TO APPLY PATCHES
|
18 | 17 |
|
19 | 18 | + if cfg!(target_arch = "aarch64") && test.test == "F32Array" && test.options.convention == CallingConvention::C {
|
20 | 19 | + result.check = Busted(Check);
|
21 | 20 | + }
|
22 | 21 | +
|
| 22 | ++ if cfg!(target_arch = "aarch64") && test.test == "SingleVariantUnion" && test.options.convention == CallingConvention::C && test.options.repr == LangRepr::C { |
| 23 | ++ result.check = Busted(Check); |
| 24 | ++ } |
| 25 | ++ |
23 | 26 | + if cfg!(target_arch = "aarch64") && test.test == "OptionU128" && test.options.convention == CallingConvention::Rust && test.options.repr == LangRepr::C {
|
24 | 27 | + result.check = Busted(Check);
|
25 | 28 | + }
|
|
0 commit comments