Skip to content

Commit 2d768a4

Browse files
author
David Ungar
committed
Fix Linux tests
1 parent d405e35 commit 2d768a4

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

Tests/SwiftDriverTests/IncrementalCompilationTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ final class NonincrementalCompilationTests: XCTestCase {
286286
}
287287

288288

289-
final class IncrementalCompilationUnitTests: XCTestCase {
289+
final class IncrementalCompilationTests: XCTestCase {
290290

291291
var tempDir: AbsolutePath = AbsolutePath("/tmp")
292292

Tests/SwiftDriverTests/XCTestManifests.swift

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ extension IncrementalCompilationTests {
3232
// to regenerate.
3333
static let __allTests__IncrementalCompilationTests = [
3434
("testIncremental", testIncremental),
35+
("testIncrementalDiagnostics", testIncrementalDiagnostics),
3536
]
3637
}
3738

@@ -117,6 +118,7 @@ extension NonincrementalCompilationTests {
117118
static let __allTests__NonincrementalCompilationTests = [
118119
("testBuildRecordReading", testBuildRecordReading),
119120
("testDateConversion", testDateConversion),
121+
("testExtractSourceFileDependencyGraphFromSwiftModule", testExtractSourceFileDependencyGraphFromSwiftModule),
120122
("testNoIncremental", testNoIncremental),
121123
("testReadAndWriteBuildRecord", testReadAndWriteBuildRecord),
122124
("testReadBinarySourceFileDependencyGraph", testReadBinarySourceFileDependencyGraph),
@@ -176,12 +178,14 @@ extension SwiftDriverTests {
176178
("testDarwinToolchainArgumentValidation", testDarwinToolchainArgumentValidation),
177179
("testDashDashPassingDownInput", testDashDashPassingDownInput),
178180
("testDebugSettings", testDebugSettings),
181+
("testDeriveSwiftDocPath", testDeriveSwiftDocPath),
179182
("testDiagnosticOptions", testDiagnosticOptions),
180183
("testDOTFileEmission", testDOTFileEmission),
181184
("testDriverKindParsing", testDriverKindParsing),
182185
("testDSYMGeneration", testDSYMGeneration),
183186
("testDumpASTOverride", testDumpASTOverride),
184187
("testEmbedBitcode", testEmbedBitcode),
188+
("testEmitModuleSeparately", testEmitModuleSeparately),
185189
("testEmitModuleTrace", testEmitModuleTrace),
186190
("testEnvironmentInferenceWarning", testEnvironmentInferenceWarning),
187191
("testExecutableFallbackPath", testExecutableFallbackPath),
@@ -195,6 +199,7 @@ extension SwiftDriverTests {
195199
("testJoinedPathOptions", testJoinedPathOptions),
196200
("testLEqualPassedDownToLinkerInvocation", testLEqualPassedDownToLinkerInvocation),
197201
("testLinking", testLinking),
202+
("testLTOLibraryArg", testLTOLibraryArg),
198203
("testLTOOption", testLTOOption),
199204
("testLTOOutputs", testLTOOutputs),
200205
("testMergeModuleEmittingDependencies", testMergeModuleEmittingDependencies),
@@ -222,6 +227,7 @@ extension SwiftDriverTests {
222227
("testPrintOutputFileMap", testPrintOutputFileMap),
223228
("testPrintTargetInfo", testPrintTargetInfo),
224229
("testProfileArgValidation", testProfileArgValidation),
230+
("testProfileLinkerArgs", testProfileLinkerArgs),
225231
("testRecordedInputModificationDates", testRecordedInputModificationDates),
226232
("testRegressions", testRegressions),
227233
("testRelativeOptionOrdering", testRelativeOptionOrdering),

0 commit comments

Comments
 (0)