mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
These tests are failing intermittently. Disabling them to keep PR testing happy while we figure out why. rdar://80079617
29 lines
617 B
Swift
29 lines
617 B
Swift
// RUN: %target-run-simple-swift | %FileCheck %s
|
|
// REQUIRES: executable_test
|
|
|
|
// REQUIRES: objc_interop
|
|
// REQUIRES: rdar80079617
|
|
|
|
import Foundation
|
|
|
|
// Check that ObjC associated objects are cleaned up when attached to native
|
|
// Swift objects.
|
|
|
|
class Root {
|
|
deinit { print("deallocating root") }
|
|
}
|
|
|
|
class Associated {
|
|
deinit { print("deallocating associated") }
|
|
}
|
|
|
|
var token: Int8 = 0
|
|
|
|
autoreleasepool {
|
|
let root = Root()
|
|
objc_setAssociatedObject(root, &token, Associated(),
|
|
.OBJC_ASSOCIATION_RETAIN_NONATOMIC)
|
|
}
|
|
// CHECK: deallocating root
|
|
// CHECK-NEXT: deallocating associated
|