Skip to content

Commit 571a83e

Browse files
authored
Merge pull request #76 from DougGregor/cant-have-nice-things
Fix CI
2 parents dc19ff3 + 7a4c262 commit 571a83e

File tree

2 files changed

+14
-22
lines changed

2 files changed

+14
-22
lines changed

Tests/SwiftDriverTests/StringAdditionsTests.swift

-12
This file was deleted.

Tests/SwiftDriverTests/XCTestManifests.swift

+14-10
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,23 @@
11
#if !canImport(ObjectiveC)
22
import XCTest
33

4+
extension IncrementalCompilationTests {
5+
// DO NOT MODIFY: This is autogenerated, use:
6+
// `swift test --generate-linuxmain`
7+
// to regenerate.
8+
static let __allTests__IncrementalCompilationTests = [
9+
("testInputInfoMapReading", testInputInfoMapReading),
10+
]
11+
}
12+
413
extension JobExecutorTests {
514
// DO NOT MODIFY: This is autogenerated, use:
615
// `swift test --generate-linuxmain`
716
// to regenerate.
817
static let __allTests__JobExecutorTests = [
918
("testDarwinBasic", testDarwinBasic),
1019
("testStubProcessProtocol", testStubProcessProtocol),
20+
("testSwiftDriverExecOverride", testSwiftDriverExecOverride),
1121
]
1222
}
1323

@@ -21,20 +31,12 @@ extension ParsableMessageTests {
2131
]
2232
}
2333

24-
extension StringAdditionsTests {
25-
// DO NOT MODIFY: This is autogenerated, use:
26-
// `swift test --generate-linuxmain`
27-
// to regenerate.
28-
static let __allTests__StringAdditionsTests = [
29-
("testInterpolationOr", testInterpolationOr),
30-
]
31-
}
32-
3334
extension SwiftDriverTests {
3435
// DO NOT MODIFY: This is autogenerated, use:
3536
// `swift test --generate-linuxmain`
3637
// to regenerate.
3738
static let __allTests__SwiftDriverTests = [
39+
("testBatchModeCompiles", testBatchModeCompiles),
3840
("testCompilerMode", testCompilerMode),
3941
("testDebugSettings", testDebugSettings),
4042
("testDOTFileEmission", testDOTFileEmission),
@@ -43,11 +45,13 @@ extension SwiftDriverTests {
4345
("testInputFiles", testInputFiles),
4446
("testLinking", testLinking),
4547
("testMergeModulesOnly", testMergeModulesOnly),
48+
("testModuleNameFallbacks", testModuleNameFallbacks),
4649
("testModuleSettings", testModuleSettings),
4750
("testOutputFileMapLoading", testOutputFileMapLoading),
4851
("testParseErrors", testParseErrors),
4952
("testParsing", testParsing),
5053
("testPrimaryOutputKinds", testPrimaryOutputKinds),
54+
("testRegressions", testRegressions),
5155
("testResponseFileExpansion", testResponseFileExpansion),
5256
("testSanitizerArgs", testSanitizerArgs),
5357
("testStandardCompileJobs", testStandardCompileJobs),
@@ -75,9 +79,9 @@ extension TripleTests {
7579

7680
public func __allTests() -> [XCTestCaseEntry] {
7781
return [
82+
testCase(IncrementalCompilationTests.__allTests__IncrementalCompilationTests),
7883
testCase(JobExecutorTests.__allTests__JobExecutorTests),
7984
testCase(ParsableMessageTests.__allTests__ParsableMessageTests),
80-
testCase(StringAdditionsTests.__allTests__StringAdditionsTests),
8185
testCase(SwiftDriverTests.__allTests__SwiftDriverTests),
8286
testCase(TripleTests.__allTests__TripleTests),
8387
]

0 commit comments

Comments
 (0)