Skip to content

Commit e8eb2ed

Browse files
committed
Update test manifest for linux
1 parent 9b3d73f commit e8eb2ed

File tree

1 file changed

+23
-2
lines changed

1 file changed

+23
-2
lines changed

Tests/SystemTests/XCTestManifests.swift

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ extension FileOperationsTest {
2828
static let __allTests__FileOperationsTest = [
2929
("testAdHocOpen", testAdHocOpen),
3030
("testAdHocPipe", testAdHocPipe),
31-
("testFcntl", testFcntl),
32-
("testFlock", testFlock),
31+
("testFileLocks", testFileLocks),
32+
("testFileLocksWaiting", testFileLocksWaiting),
3333
("testGithubIssues", testGithubIssues),
3434
("testHelpers", testHelpers),
3535
("testResizeFile", testResizeFile),
@@ -89,6 +89,15 @@ extension FilePermissionsTest {
8989
]
9090
}
9191

92+
extension InternalUnitTests {
93+
// DO NOT MODIFY: This is autogenerated, use:
94+
// `swift test --generate-linuxmain`
95+
// to regenerate.
96+
static let __allTests__InternalUnitTests = [
97+
("testFileOffsets", testFileOffsets),
98+
]
99+
}
100+
92101
extension MockingTest {
93102
// DO NOT MODIFY: This is autogenerated, use:
94103
// `swift test --generate-linuxmain`
@@ -133,6 +142,16 @@ extension SystemStringTest {
133142
]
134143
}
135144

145+
extension UtilTests {
146+
// DO NOT MODIFY: This is autogenerated, use:
147+
// `swift test --generate-linuxmain`
148+
// to regenerate.
149+
static let __allTests__UtilTests = [
150+
("testCStringArray", testCStringArray),
151+
("testStackBuffer", testStackBuffer),
152+
]
153+
}
154+
136155
public func __allTests() -> [XCTestCaseEntry] {
137156
return [
138157
testCase(ErrnoTest.__allTests__ErrnoTest),
@@ -143,9 +162,11 @@ public func __allTests() -> [XCTestCaseEntry] {
143162
testCase(FilePathSyntaxTest.__allTests__FilePathSyntaxTest),
144163
testCase(FilePathTest.__allTests__FilePathTest),
145164
testCase(FilePermissionsTest.__allTests__FilePermissionsTest),
165+
testCase(InternalUnitTests.__allTests__InternalUnitTests),
146166
testCase(MockingTest.__allTests__MockingTest),
147167
testCase(SystemCharTest.__allTests__SystemCharTest),
148168
testCase(SystemStringTest.__allTests__SystemStringTest),
169+
testCase(UtilTests.__allTests__UtilTests),
149170
]
150171
}
151172
#endif

0 commit comments

Comments
 (0)