Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit cd8becb

Browse files
committed
Disable some ABI tests on MinGW
1 parent 738dd2b commit cd8becb

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
From 2b15fee2bb5fd14e34c7e17e44d99cb34f4c555d Mon Sep 17 00:00:00 2001
2+
From: Afonso Bordado <afonsobordado@az8.co>
3+
Date: Tue, 27 Sep 2022 07:55:17 +0100
4+
Subject: [PATCH] Disable some test on x86_64-pc-windows-gnu
5+
6+
---
7+
src/report.rs | 6 ++++++
8+
1 file changed, 6 insertions(+)
9+
10+
diff --git a/src/report.rs b/src/report.rs
11+
index eeec614..f582867 100644
12+
--- a/src/report.rs
13+
+++ b/src/report.rs
14+
@@ -48,6 +48,12 @@ pub fn get_test_rules(test: &TestKey, caller: &dyn AbiImpl, callee: &dyn AbiImpl
15+
//
16+
// THIS AREA RESERVED FOR VENDORS TO APPLY PATCHES
17+
18+
+ // x86_64-pc-windows-gnu has some broken i128 tests that aren't disabled by default
19+
+ if cfg!(all(target_os = "windows", target_env = "gnu")) && test.test_name == "ui128" {
20+
+ result.run = Link;
21+
+ result.check = Pass(Link);
22+
+ }
23+
+
24+
// END OF VENDOR RESERVED AREA
25+
//
26+
//
27+
--
28+
2.30.1.windows.1
29+

0 commit comments

Comments
 (0)