mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Find all the usages of `--enable-experimental-feature` or `--enable-upcoming-feature` in the tests and replace some of the `REQUIRES: asserts` to use `REQUIRES: swift-feature-Foo` instead, which should correctly apply to depending on the asserts/noasserts mode of the toolchain for each feature. Remove some comments that talked about enabling asserts since they don't apply anymore (but I might had miss some). All this was done with an automated script, so some formatting weirdness might happen, but I hope I fixed most of those. There might be some tests that were `REQUIRES: asserts` that might run in `noasserts` toolchains now. This will normally be because their feature went from experimental to upcoming/base and the tests were not updated.
24 lines
958 B
Swift
24 lines
958 B
Swift
// RUN: %target-swift-emit-ir %s -wmo
|
|
// RUN: %target-swift-emit-ir %s -enable-experimental-feature Embedded -wmo
|
|
// RUN: %target-swift-emit-ir %s -enable-experimental-feature Embedded -no-allocations -wmo -verify -verify-ignore-unknown
|
|
|
|
// REQUIRES: swift_in_compiler
|
|
// REQUIRES: optimized_stdlib
|
|
// REQUIRES: OS=macosx || OS=linux-gnu
|
|
// REQUIRES: swift_feature_Embedded
|
|
|
|
public class X {} // expected-error {{cannot use allocating type 'X' in -no-allocations mode}}
|
|
public func use_a_class() -> X {
|
|
let x = X() // expected-note {{called from here}}
|
|
return x
|
|
}
|
|
|
|
public func use_an_array() -> Int {
|
|
let a = [1, 2, 3] // expected-error {{cannot use allocating type '_ContiguousArrayStorage<Int>' in -no-allocations mode}}
|
|
return a.count
|
|
}
|
|
|
|
public func use_unsafepointer_allocate() -> UnsafeMutablePointer<UInt8> {
|
|
return UnsafeMutablePointer<UInt8>.allocate(capacity: 10) // expected-error {{cannot use allocating operation in -no-allocations mode}}
|
|
}
|