Skip to content

Commit

Permalink
Update test manifest for linux
Browse files Browse the repository at this point in the history
  • Loading branch information
milseman committed Mar 8, 2023
1 parent 9b3d73f commit e8eb2ed
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions Tests/SystemTests/XCTestManifests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ extension FileOperationsTest {
static let __allTests__FileOperationsTest = [
("testAdHocOpen", testAdHocOpen),
("testAdHocPipe", testAdHocPipe),
("testFcntl", testFcntl),
("testFlock", testFlock),
("testFileLocks", testFileLocks),
("testFileLocksWaiting", testFileLocksWaiting),
("testGithubIssues", testGithubIssues),
("testHelpers", testHelpers),
("testResizeFile", testResizeFile),
Expand Down Expand Up @@ -89,6 +89,15 @@ extension FilePermissionsTest {
]
}

extension InternalUnitTests {
// DO NOT MODIFY: This is autogenerated, use:
// `swift test --generate-linuxmain`
// to regenerate.
static let __allTests__InternalUnitTests = [
("testFileOffsets", testFileOffsets),
]
}

extension MockingTest {
// DO NOT MODIFY: This is autogenerated, use:
// `swift test --generate-linuxmain`
Expand Down Expand Up @@ -133,6 +142,16 @@ extension SystemStringTest {
]
}

extension UtilTests {
// DO NOT MODIFY: This is autogenerated, use:
// `swift test --generate-linuxmain`
// to regenerate.
static let __allTests__UtilTests = [
("testCStringArray", testCStringArray),
("testStackBuffer", testStackBuffer),
]
}

public func __allTests() -> [XCTestCaseEntry] {
return [
testCase(ErrnoTest.__allTests__ErrnoTest),
Expand All @@ -143,9 +162,11 @@ public func __allTests() -> [XCTestCaseEntry] {
testCase(FilePathSyntaxTest.__allTests__FilePathSyntaxTest),
testCase(FilePathTest.__allTests__FilePathTest),
testCase(FilePermissionsTest.__allTests__FilePermissionsTest),
testCase(InternalUnitTests.__allTests__InternalUnitTests),
testCase(MockingTest.__allTests__MockingTest),
testCase(SystemCharTest.__allTests__SystemCharTest),
testCase(SystemStringTest.__allTests__SystemStringTest),
testCase(UtilTests.__allTests__UtilTests),
]
}
#endif

0 comments on commit e8eb2ed

Please sign in to comment.