Fix test expectations.

This commit is contained in:
Cornelius Riemenschneider
2024-08-08 10:28:42 +02:00
parent e5261f8bfc
commit 2b0ff17884
2 changed files with 4 additions and 2 deletions

View File

@@ -2,7 +2,6 @@
| Builtin.Executor | BuiltinExecutorType |
| Builtin.FPIEEE32 | BuiltinFloatType |
| Builtin.FPIEEE64 | BuiltinFloatType |
| Builtin.FPIEEE80 | BuiltinFloatType |
| Builtin.Int1 | BuiltinIntegerType |
| Builtin.Int8 | BuiltinIntegerType |
| Builtin.Int16 | BuiltinIntegerType |

View File

@@ -2,5 +2,8 @@ import swift
from BuiltinType t
// FPIEEE16 related stuff is not there on macOS
where not t.toString().matches("%FPIEEE16")
// FPIEEE80 is also missing on some CI runners
where
not t.toString().matches("%FPIEEE16") and
not t.toString().matches("%FPIEEE80")
select t, t.getPrimaryQlClasses()