|
1 |
| -From 2348d745accc6cca9fc7c4df516fd38b2e94a546 Mon Sep 17 00:00:00 2001 |
| 1 | +From d1e33b3a0c31fa3e2379cf5c0745b71245139f7a 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/report.rs | 20 ++++++++++++++++++++ |
8 |
| - 1 file changed, 20 insertions(+) |
| 7 | + src/report.rs | 24 ++++++++++++++++++++++++ |
| 8 | + 1 file changed, 24 insertions(+) |
9 | 9 |
|
10 | 10 | diff --git a/src/report.rs b/src/report.rs
|
11 |
| -index 958ab43..e01f446 100644 |
| 11 | +index 958ab43..56326fd 100644 |
12 | 12 | --- a/src/report.rs
|
13 | 13 | +++ b/src/report.rs
|
14 |
| -@@ -48,6 +48,26 @@ pub fn get_test_rules(test: &TestKey, caller: &dyn Toolchain, callee: &dyn Toolc |
| 14 | +@@ -48,6 +48,30 @@ pub fn get_test_rules(test: &TestKey, caller: &dyn Toolchain, callee: &dyn Toolc |
15 | 15 | //
|
16 | 16 | // THIS AREA RESERVED FOR VENDORS TO APPLY PATCHES
|
17 | 17 |
|
18 | 18 | + if cfg!(target_arch = "aarch64") && test.test == "SingleVariantUnion" && test.options.convention == CallingConvention::C && test.options.repr == LangRepr::C {
|
19 | 19 | + result.check = Busted(Check);
|
20 | 20 | + }
|
21 | 21 | +
|
22 |
| -+ if cfg!(target_arch = "aarch64") && test.test == "OptionU128" && test.options.convention == CallingConvention::Rust && test.options.repr == LangRepr::C { |
| 22 | ++ if cfg!(target_arch = "aarch64") && test.test == "OptionU128" && test.caller == "rustc" && test.options.convention == CallingConvention::Rust && test.options.repr == LangRepr::C { |
| 23 | ++ result.check = Busted(Run); |
| 24 | ++ } |
| 25 | ++ |
| 26 | ++ if cfg!(target_arch = "aarch64") && test.test == "OptionU128" && test.caller == "cgclif" && test.options.convention == CallingConvention::Rust && test.options.repr == LangRepr::C { |
23 | 27 | + result.check = Busted(Check);
|
24 | 28 | + }
|
25 | 29 | +
|
|
0 commit comments