@@ -27,6 +27,8 @@ extension JobExecutorTests {
27
27
// to regenerate.
28
28
static let __allTests__JobExecutorTests = [
29
29
( " testDarwinBasic " , testDarwinBasic) ,
30
+ ( " testInputModifiedDuringMultiJobBuild " , testInputModifiedDuringMultiJobBuild) ,
31
+ ( " testInputModifiedDuringSingleJobBuild " , testInputModifiedDuringSingleJobBuild) ,
30
32
( " testStubProcessProtocol " , testStubProcessProtocol) ,
31
33
( " testSwiftDriverExecOverride " , testSwiftDriverExecOverride) ,
32
34
]
@@ -53,18 +55,6 @@ extension PredictableRandomNumberGeneratorTests {
53
55
]
54
56
}
55
57
56
- extension PrefixTrieTests {
57
- // DO NOT MODIFY: This is autogenerated, use:
58
- // `swift test --generate-linuxmain`
59
- // to regenerate.
60
- static let __allTests__PrefixTrieTests = [
61
- ( " testCollectionMatching " , testCollectionMatching) ,
62
- ( " testManyMatchingPrefixes " , testManyMatchingPrefixes) ,
63
- ( " testSimpleTrie " , testSimpleTrie) ,
64
- ( " testUpdating " , testUpdating) ,
65
- ]
66
- }
67
-
68
58
extension StringAdditionsTests {
69
59
// DO NOT MODIFY: This is autogenerated, use:
70
60
// `swift test --generate-linuxmain`
@@ -81,7 +71,9 @@ extension SwiftDriverTests {
81
71
// `swift test --generate-linuxmain`
82
72
// to regenerate.
83
73
static let __allTests__SwiftDriverTests = [
74
+ ( " testBaseOutputPaths " , testBaseOutputPaths) ,
84
75
( " testBatchModeCompiles " , testBatchModeCompiles) ,
76
+ ( " testBatchModeDiagnostics " , testBatchModeDiagnostics) ,
85
77
( " testCompilerMode " , testCompilerMode) ,
86
78
( " testDebugSettings " , testDebugSettings) ,
87
79
( " testDOTFileEmission " , testDOTFileEmission) ,
@@ -94,17 +86,21 @@ extension SwiftDriverTests {
94
86
( " testLinking " , testLinking) ,
95
87
( " testMergeModulesOnly " , testMergeModulesOnly) ,
96
88
( " testModuleNameFallbacks " , testModuleNameFallbacks) ,
89
+ ( " testModuleNaming " , testModuleNaming) ,
97
90
( " testModuleSettings " , testModuleSettings) ,
98
91
( " testMultiThreadedWholeModuleOptimizationCompiles " , testMultiThreadedWholeModuleOptimizationCompiles) ,
99
92
( " testMultithreading " , testMultithreading) ,
100
93
( " testMultithreadingDiagnostics " , testMultithreadingDiagnostics) ,
101
94
( " testOutputFileMapLoading " , testOutputFileMapLoading) ,
95
+ ( " testOutputFileMapResolving " , testOutputFileMapResolving) ,
102
96
( " testOutputFileMapStoring " , testOutputFileMapStoring) ,
103
- ( " testParseErrors " , testParseErrors ) ,
104
- ( " testParsing " , testParsing ) ,
97
+ ( " testPCHGeneration " , testPCHGeneration ) ,
98
+ ( " testPCMGeneration " , testPCMGeneration ) ,
105
99
( " testPrimaryOutputKinds " , testPrimaryOutputKinds) ,
106
100
( " testPrimaryOutputKindsDiagnostics " , testPrimaryOutputKindsDiagnostics) ,
101
+ ( " testPrintTargetInfo " , testPrintTargetInfo) ,
107
102
( " testRegressions " , testRegressions) ,
103
+ ( " testRepl " , testRepl) ,
108
104
( " testResponseFileExpansion " , testResponseFileExpansion) ,
109
105
( " testResponseFileTokenization " , testResponseFileTokenization) ,
110
106
( " testSanitizerArgs " , testSanitizerArgs) ,
@@ -114,6 +110,9 @@ extension SwiftDriverTests {
114
110
( " testTargetTriple " , testTargetTriple) ,
115
111
( " testToolchainClangPath " , testToolchainClangPath) ,
116
112
( " testToolchainUtilities " , testToolchainUtilities) ,
113
+ ( " testUsingResponseFiles " , testUsingResponseFiles) ,
114
+ ( " testVerifyDebugInfo " , testVerifyDebugInfo) ,
115
+ ( " testVersionRequest " , testVersionRequest) ,
117
116
( " testWholeModuleOptimizationOutputFileMap " , testWholeModuleOptimizationOutputFileMap) ,
118
117
]
119
118
}
@@ -127,6 +126,7 @@ extension TripleTests {
127
126
( " testBasics " , testBasics) ,
128
127
( " testDarwinPlatform " , testDarwinPlatform) ,
129
128
( " testFileFormat " , testFileFormat) ,
129
+ ( " testNormalizeARM " , testNormalizeARM) ,
130
130
( " testNormalizePermute " , testNormalizePermute) ,
131
131
( " testNormalizeSimple " , testNormalizeSimple) ,
132
132
( " testNormalizeSpecialCases " , testNormalizeSpecialCases) ,
@@ -143,7 +143,6 @@ public func __allTests() -> [XCTestCaseEntry] {
143
143
testCase ( JobExecutorTests . __allTests__JobExecutorTests) ,
144
144
testCase ( ParsableMessageTests . __allTests__ParsableMessageTests) ,
145
145
testCase ( PredictableRandomNumberGeneratorTests . __allTests__PredictableRandomNumberGeneratorTests) ,
146
- testCase ( PrefixTrieTests . __allTests__PrefixTrieTests) ,
147
146
testCase ( StringAdditionsTests . __allTests__StringAdditionsTests) ,
148
147
testCase ( SwiftDriverTests . __allTests__SwiftDriverTests) ,
149
148
testCase ( TripleTests . __allTests__TripleTests) ,
0 commit comments