Skip to content

Commit 2b0ff17

Browse files
committed
Fix test expectations.
1 parent e5261f8 commit 2b0ff17

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

swift/ql/integration-tests/posix-only/deduplication/BuiltinTypes.expected

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
| Builtin.Executor | BuiltinExecutorType |
33
| Builtin.FPIEEE32 | BuiltinFloatType |
44
| Builtin.FPIEEE64 | BuiltinFloatType |
5-
| Builtin.FPIEEE80 | BuiltinFloatType |
65
| Builtin.Int1 | BuiltinIntegerType |
76
| Builtin.Int8 | BuiltinIntegerType |
87
| Builtin.Int16 | BuiltinIntegerType |

swift/ql/integration-tests/posix-only/deduplication/BuiltinTypes.ql

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@ import swift
22

33
from BuiltinType t
44
// FPIEEE16 related stuff is not there on macOS
5-
where not t.toString().matches("%FPIEEE16")
5+
// FPIEEE80 is also missing on some CI runners
6+
where
7+
not t.toString().matches("%FPIEEE16") and
8+
not t.toString().matches("%FPIEEE80")
69
select t, t.getPrimaryQlClasses()

0 commit comments

Comments
 (0)