Files
swift-mirror/validation-test/stdlib/Glibc.swift
Erik Eckstein adef0368bb tests: add import statements to workaround linker errors in all relevant tests.
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.
2016-01-21 09:59:50 -08:00

29 lines
561 B
Swift

// RUN: %target-run-stdlib-swift
// REQUIRES: executable_test
// REQUIRES: OS=linux-gnu
import Swift
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
import Glibc
var GlibcTestSuite = TestSuite("Glibc")
GlibcTestSuite.test("errno") {
errno = 0
expectEqual(0, errno)
close(-1)
expectEqual(EBADF, errno)
}
runAllTests()