mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
Fix test expectations.
This commit is contained in:
@@ -2,7 +2,6 @@
|
|||||||
| Builtin.Executor | BuiltinExecutorType |
|
| Builtin.Executor | BuiltinExecutorType |
|
||||||
| Builtin.FPIEEE32 | BuiltinFloatType |
|
| Builtin.FPIEEE32 | BuiltinFloatType |
|
||||||
| Builtin.FPIEEE64 | BuiltinFloatType |
|
| Builtin.FPIEEE64 | BuiltinFloatType |
|
||||||
| Builtin.FPIEEE80 | BuiltinFloatType |
|
|
||||||
| Builtin.Int1 | BuiltinIntegerType |
|
| Builtin.Int1 | BuiltinIntegerType |
|
||||||
| Builtin.Int8 | BuiltinIntegerType |
|
| Builtin.Int8 | BuiltinIntegerType |
|
||||||
| Builtin.Int16 | BuiltinIntegerType |
|
| Builtin.Int16 | BuiltinIntegerType |
|
||||||
|
|||||||
@@ -2,5 +2,8 @@ import swift
|
|||||||
|
|
||||||
from BuiltinType t
|
from BuiltinType t
|
||||||
// FPIEEE16 related stuff is not there on macOS
|
// 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()
|
select t, t.getPrimaryQlClasses()
|
||||||
|
|||||||
Reference in New Issue
Block a user