We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1a6b44 commit 3b9eef6Copy full SHA for 3b9eef6
Tests/DistributedClusterTests/Metrics/ActorMemoryTests.swift
@@ -24,9 +24,9 @@ final class ActorMemoryTests: XCTestCase {
24
// TODO: we could use malloc hooking to get an idea about this in allocation tests; more interesting since over time as well based on ops
25
26
func test_osx_actorShell_instanceSize() {
27
- #if os(OSX)
28
- class_getInstanceSize(_ActorShell<Int>.self).shouldEqual(624)
29
- class_getInstanceSize(_ActorShell<String>.self).shouldEqual(624)
+ #if os(macOS)
+ class_getInstanceSize(_ActorShell<Int>.self).shouldEqual(576)
+ class_getInstanceSize(_ActorShell<String>.self).shouldEqual(576)
30
#else
31
print("Skipping test_osx_actorShell_instanceSize as requires Objective-C runtime")
32
#endif
0 commit comments