1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
// RUN: %empty-directory(%t)
// RUN: %target-build-swift %s -o %t/Assert_Debug -Onone
// RUN: %target-build-swift %s -Xfrontend -disable-access-control -o %t/Assert_Release -O
// RUN: %target-build-swift %s -Xfrontend -disable-access-control -o %t/Assert_Unchecked -Ounchecked
// RUN: %target-codesign %t/Assert_Debug
// RUN: %target-codesign %t/Assert_Release
// RUN: %target-codesign %t/Assert_Unchecked
//
// RUN: %target-run %t/Assert_Debug
// RUN: %target-run %t/Assert_Release
// RUN: %target-run %t/Assert_Unchecked
// REQUIRES: executable_test
// UNSUPPORTED: OS=wasi
import StdlibUnittest
func returnNil() -> AnyObject? {
return _opaqueIdentity(nil as AnyObject?)
}
var OptionalTraps = TestSuite("OptionalTraps")
func shouldCheckErrorLocation() -> Bool {
// Location information for runtime traps is only emitted in debug builds.
guard _isDebugAssertConfiguration() else { return false }
// The runtime error location format changed after the 5.3 release.
// (https://github.com/apple/swift/pull/34665)
if #available(macOS 11.3, iOS 14.5, tvOS 14.5, watchOS 7.4, *) {
return true
} else {
return false
}
}
OptionalTraps.test("UnwrapNone")
.skip(.custom(
{ _isFastAssertConfiguration() },
reason: "this trap is not guaranteed to happen in -Ounchecked"))
.code {
let a: AnyObject? = returnNil()
expectCrashLater()
let unwrapped: AnyObject = a!
_blackHole(unwrapped)
}
OptionalTraps.test("UnwrapNone/location")
.skip(.custom(
{ _isFastAssertConfiguration() },
reason: "this trap is not guaranteed to happen in -Ounchecked"))
.crashOutputMatches(shouldCheckErrorLocation()
? "OptionalTraps.swift:58:"
: "")
.code {
expectCrashLater()
let a: AnyObject? = returnNil()
expectCrashLater()
let unwrapped: AnyObject = a!
_blackHole(unwrapped)
}
OptionalTraps.test("UnwrapNone/Ounchecked")
.xfail(.custom(
{ !_isFastAssertConfiguration() },
reason: "unwrapping nil should trap unless we are in -Ounchecked mode"))
.code {
var a: AnyObject? = returnNil()
expectEqual(0, unsafeBitCast(a!, to: Int.self))
}
OptionalTraps.test("UnwrapNone/Message")
.skip(.custom(
{ _isFastAssertConfiguration() },
reason: "this trap is not guaranteed to happen in -Ounchecked"))
.skip(.custom(
{ !_isDebugAssertConfiguration() },
reason: "this trap may not have an error message may not be printed in -O"))
.code {
var a: AnyObject? = returnNil()
expectCrashLater(withMessage:
"Unexpectedly found nil while unwrapping an Optional value")
let unwrapped: AnyObject = a!
_blackHole(unwrapped)
}
OptionalTraps.test("UnwrapNone/Message/Implicit")
.skip(.custom(
{ _isFastAssertConfiguration() },
reason: "this trap is not guaranteed to happen in -Ounchecked"))
.skip(.custom(
{ !_isDebugAssertConfiguration() },
reason: "this trap may not have an error message may not be printed in -O"))
.code {
var a: AnyObject! = returnNil()
expectCrashLater(withMessage:
"Unexpectedly found nil while implicitly unwrapping an Optional value")
let unwrapped: AnyObject = a
_blackHole(unwrapped)
}
runAllTests()
|