Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update test manifest for linux
  • Loading branch information
milseman committed Mar 8, 2023
commit e8eb2ed5b21eb0a7a7a331b345d14d33aa62d989
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