Skip to content

Commit 9fa4be8

Browse files
committed
Fix missing -Xfrontend in test
The emitVariantModule tests had a missing `-Xfrontend` on the module doc flag resulting in a warning from the driver about an unused input. That is intended to be a value for the variant module doc flag, so fixing that while we're in here.
1 parent f9311e0 commit 9fa4be8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/SwiftDriverTests/SwiftDriverTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4182,7 +4182,7 @@ final class SwiftDriverTests: XCTestCase {
41824182
"-emit-module-path", "target.swiftmodule",
41834183
"-emit-variant-module-path", "variant.swiftmodule",
41844184
"-Xfrontend", "-emit-module-doc-path", "-Xfrontend", "target.swiftdoc",
4185-
"-Xfrontend", "-emit-variant-module-doc-path", "variant.swiftdoc",
4185+
"-Xfrontend", "-emit-variant-module-doc-path", "-Xfrontend", "variant.swiftdoc",
41864186
"-emit-module-source-info-path", "target.sourceinfo",
41874187
"-emit-variant-module-source-info-path", "variant.sourceinfo",
41884188
"-emit-package-module-interface-path", "target.package.swiftinterface",

0 commit comments

Comments
 (0)