Skip to content

Commit 99ebe61

Browse files
committed
Don't skip abi-cafe tests that give SIGILL on Windows
1 parent 747adbd commit 99ebe61

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

patches/0002-abi-cafe-Disable-broken-tests.patch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ index 958ab43..dcf1044 100644
4343
+ result.check = Busted(Run);
4444
+ }
4545
+
46-
+ if cfg!(windows) && (test.test == "OptionU128" || test.test == "I64Array" || test.test == "simple") {
47-
+ result.run = Skip; // Gives SIGILL on x86_64 windows.
46+
+ if cfg!(windows) && test.test == "OptionU128" {
47+
+ result.check = Busted(Run); // Gives SIGILL on x86_64 windows.
4848
+ }
4949
+
5050
+ if test.test == "f16" || test.test == "f128" {

0 commit comments

Comments
 (0)