mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
This is needed if we compile StdlibUnittest with -sil-serialize-all So far I added the imports only in files which needed them. But this may change, depending on the optimizer (inlining). Adding them in all files doesn't harm and avoids confusion if someone makes an unrelated change which would result in such a linker error.
27 lines
580 B
Swift
27 lines
580 B
Swift
// RUN: %target-run-simple-swift | FileCheck %s
|
|
// REQUIRES: executable_test
|
|
|
|
import StdlibUnittest
|
|
|
|
// Also import modules which are used by StdlibUnittest internally. This
|
|
// workaround is needed to link all required libraries in case we compile
|
|
// StdlibUnittest with -sil-serialize-all.
|
|
import SwiftPrivate
|
|
#if _runtime(_ObjC)
|
|
import ObjectiveC
|
|
#endif
|
|
|
|
//
|
|
// Test OS version parsing
|
|
//
|
|
|
|
// CHECK: (10, 0, 0)
|
|
print(_parseDottedVersionTriple("10"))
|
|
|
|
// CHECK: (10, 9, 0)
|
|
print(_parseDottedVersionTriple("10.9"))
|
|
|
|
// CHECK: (10, 9, 3)
|
|
print(_parseDottedVersionTriple("10.9.3"))
|
|
|