mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Most tests were using %swift or similar substitutions, which did not include the target triple and SDK. The driver was defaulting to the host OS. Thus, we could not run the tests when the standard library was not built for OS X. Swift SVN r24504
36 lines
1.4 KiB
Swift
36 lines
1.4 KiB
Swift
// RUN: %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=ENUM_CASE_1 | FileCheck %s -check-prefix=NO_RESULTS
|
|
// RUN: %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=ENUM_CASE_2 | FileCheck %s -check-prefix=NO_RESULTS
|
|
// RUN: %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=ENUM_CASE_3 | FileCheck %s -check-prefix=NO_RESULTS
|
|
// RUN: %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=ENUM_CASE_4 | FileCheck %s -check-prefix=NO_RESULTS
|
|
// RUN: %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=ENUM_CASE_5 | FileCheck %s -check-prefix=NO_RESULTS
|
|
// RUN: %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=ENUM_CASE_6 | FileCheck %s -check-prefix=NO_RESULTS
|
|
|
|
// NO_RESULTS: found code completion token
|
|
// NO_RESULTS-NOT: Begin completions
|
|
|
|
func returnsInt() -> Int {}
|
|
|
|
//===---
|
|
//===--- Test that we don't show any completion results in enum cases.
|
|
//===---
|
|
|
|
enum EnumCase1 : Int {
|
|
case Foo = #^ENUM_CASE_1^#
|
|
}
|
|
enum EnumCase2 : Int {
|
|
case Foo = 1 + #^ENUM_CASE_2^#
|
|
}
|
|
enum EnumCase3 : Int {
|
|
case Foo = returnsInt()#^ENUM_CASE_3^#
|
|
}
|
|
enum EnumCase4 : Int {
|
|
case Foo = returnsInt().#^ENUM_CASE_4^#
|
|
}
|
|
enum EnumCase5 : Int {
|
|
case Foo = super#^ENUM_CASE_5^#
|
|
}
|
|
enum EnumCase6 : Int {
|
|
case Foo = super.#^ENUM_CASE_6^#
|
|
}
|
|
|