mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
We need to run utils/swift-darwin-postprocess.py on every executable test on Darwin platforms to work around a dyld issue. (And to ad-hoc sign executables on platforms that need it.) Add a %target-codesign step to stress tests that are currently missing it.
106 lines
2.3 KiB
Swift
106 lines
2.3 KiB
Swift
// RUN: %target-build-swift %s %import-libdispatch -o %t_binary
|
|
// RUN: %target-codesign %t_binary
|
|
// RUN: %target-run %t_binary
|
|
// REQUIRES: executable_test
|
|
// REQUIRES: stress_test
|
|
// REQUIRES: libdispatch
|
|
|
|
import StdlibUnittest
|
|
import Dispatch
|
|
|
|
let iterations = 200_000
|
|
|
|
class Thing {}
|
|
|
|
class WBox<T: AnyObject> {
|
|
weak var wref: T?
|
|
init(_ ref: T) { self.wref = ref }
|
|
init() { self.wref = nil }
|
|
}
|
|
|
|
let WeakReferenceRaceTests = TestSuite("WeakReferenceRaceTests")
|
|
|
|
func forwardOptional<T>(_ t: T!) -> T {
|
|
return t!
|
|
}
|
|
|
|
WeakReferenceRaceTests.test("class instance property [SR-192] (copy)") {
|
|
let q = DispatchQueue(label: "", attributes: .concurrent)
|
|
|
|
// Capture a weak reference via its container object
|
|
// "https://bugs.swift.org/browse/SR-192"
|
|
for i in 1...iterations {
|
|
let box = WBox(Thing())
|
|
let closure = {
|
|
let nbox = WBox<Thing>()
|
|
nbox.wref = box.wref
|
|
_blackHole(nbox)
|
|
}
|
|
|
|
q.async(execute: closure)
|
|
q.async(execute: closure)
|
|
}
|
|
|
|
q.async(flags: .barrier) {}
|
|
}
|
|
|
|
WeakReferenceRaceTests.test("class instance property [SR-192] (load)") {
|
|
let q = DispatchQueue(label: "", attributes: .concurrent)
|
|
|
|
// Capture a weak reference via its container object
|
|
// "https://bugs.swift.org/browse/SR-192"
|
|
for i in 1...iterations {
|
|
let box = WBox(Thing())
|
|
let closure = {
|
|
if let ref = box.wref {
|
|
_blackHole(ref)
|
|
}
|
|
}
|
|
|
|
q.async(execute: closure)
|
|
q.async(execute: closure)
|
|
}
|
|
|
|
q.async(flags: .barrier) {}
|
|
}
|
|
|
|
WeakReferenceRaceTests.test("direct capture (copy)") {
|
|
let q = DispatchQueue(label: "", attributes: .concurrent)
|
|
|
|
// Capture a weak reference directly in multiple closures
|
|
for i in 1...iterations {
|
|
weak var wref = Thing()
|
|
let closure = {
|
|
let nbox = WBox<Thing>()
|
|
nbox.wref = wref
|
|
_blackHole(nbox)
|
|
}
|
|
|
|
q.async(execute: closure)
|
|
q.async(execute: closure)
|
|
}
|
|
|
|
q.async(flags: .barrier) {}
|
|
}
|
|
|
|
WeakReferenceRaceTests.test("direct capture (load)") {
|
|
let q = DispatchQueue(label: "", attributes: .concurrent)
|
|
|
|
// Capture a weak reference directly in multiple closures
|
|
for i in 1...iterations {
|
|
weak var wref = Thing()
|
|
let closure = {
|
|
if let ref = wref {
|
|
_blackHole(ref)
|
|
}
|
|
}
|
|
|
|
q.async(execute: closure)
|
|
q.async(execute: closure)
|
|
}
|
|
|
|
q.async(flags: .barrier) {}
|
|
}
|
|
|
|
runAllTests()
|