mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Cherry-pick of #83128, #82399, and #82878, merged asea6ca2b5db,0c4e56174b, ande34eb3331frespectively. **Explanation**: Currently `test/CMakeLists.txt` can only set `SWIFT_LIT_ARGS` for all tests uniformly. This means that we can't have tests for Embedded Swift with a different set of `lit.py` arguments. Also, create new `check-swift-embedded-wasi` target from `test/CMakeLists.txt`, tweak `lit.cfg` to support WASI Clang resource dir, exclude unsupported tests based on `CPU=wasm32` instead of `OS=wasi`. **Scope**: Limited to Embedded Swift test suite. **Risk**: Low, due to limited scope. **Testing**: #82878 was incubated on `main` for 2 weeks, #82399 for 3 weeks with no disruption, #83128 merged this week, but enables all these tests on CI, which are consistently passing. **Issue**: rdar://156585717 **Reviewer**: @bnbarham
103 lines
3.1 KiB
Swift
103 lines
3.1 KiB
Swift
// 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=wasip1
|
|
|
|
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()
|
|
|