Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ if ProcessInfo.processInfo.environment["SWIFTPARSER_ENABLE_ALTERNATE_TOKEN_INTRO
}

let package = Package(
name: "SwiftSyntax",
name: "swift-syntax",
platforms: [
.macOS(.v10_15),
.iOS(.v13),
Expand Down
4 changes: 2 additions & 2 deletions Tests/SwiftParserTest/LinkageTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -200,9 +200,9 @@ extension LinkageTest {
let name = try XCTUnwrap(_dyld_get_image_name(i))
let path = String(cString: name)
// We can wind up in SwiftParserTest.xctest when built via the IDE or
// in SwiftSyntaxPackageTests.xctest when built at the command line
// in swift-syntaxPackageTests.xctest when built at the command line
// via the package manager.
guard path.hasSuffix("SwiftParserTest") || path.hasSuffix("SwiftSyntaxPackageTests") else {
guard path.hasSuffix("SwiftParserTest") || path.hasSuffix("swift-syntaxPackageTests") else {
continue
}

Expand Down
2 changes: 1 addition & 1 deletion build-script.py
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ def run_xctests(
if verbose:
swiftpm_call.extend(["--verbose"])

swiftpm_call.extend(["--test-product", "SwiftSyntaxPackageTests"])
swiftpm_call.extend(["--test-product", "swift-syntaxPackageTests"])

env = dict(os.environ)
env["SWIFT_BUILD_SCRIPT_ENVIRONMENT"] = "1"
Expand Down