@@ -28,8 +28,8 @@ extension FileOperationsTest {
28
28
static let __allTests__FileOperationsTest = [
29
29
( " testAdHocOpen " , testAdHocOpen) ,
30
30
( " testAdHocPipe " , testAdHocPipe) ,
31
- ( " testFcntl " , testFcntl ) ,
32
- ( " testFlock " , testFlock ) ,
31
+ ( " testFileLocks " , testFileLocks ) ,
32
+ ( " testFileLocksWaiting " , testFileLocksWaiting ) ,
33
33
( " testGithubIssues " , testGithubIssues) ,
34
34
( " testHelpers " , testHelpers) ,
35
35
( " testResizeFile " , testResizeFile) ,
@@ -89,6 +89,15 @@ extension FilePermissionsTest {
89
89
]
90
90
}
91
91
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
+
92
101
extension MockingTest {
93
102
// DO NOT MODIFY: This is autogenerated, use:
94
103
// `swift test --generate-linuxmain`
@@ -133,6 +142,16 @@ extension SystemStringTest {
133
142
]
134
143
}
135
144
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
+
136
155
public func __allTests( ) -> [ XCTestCaseEntry ] {
137
156
return [
138
157
testCase ( ErrnoTest . __allTests__ErrnoTest) ,
@@ -143,9 +162,11 @@ public func __allTests() -> [XCTestCaseEntry] {
143
162
testCase ( FilePathSyntaxTest . __allTests__FilePathSyntaxTest) ,
144
163
testCase ( FilePathTest . __allTests__FilePathTest) ,
145
164
testCase ( FilePermissionsTest . __allTests__FilePermissionsTest) ,
165
+ testCase ( InternalUnitTests . __allTests__InternalUnitTests) ,
146
166
testCase ( MockingTest . __allTests__MockingTest) ,
147
167
testCase ( SystemCharTest . __allTests__SystemCharTest) ,
148
168
testCase ( SystemStringTest . __allTests__SystemStringTest) ,
169
+ testCase ( UtilTests . __allTests__UtilTests) ,
149
170
]
150
171
}
151
172
#endif
0 commit comments