File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -140,6 +140,11 @@ package actor SkipUnless {
140
140
file: StaticString = #filePath,
141
141
line: UInt = #line
142
142
) async throws {
143
+ try XCTSkipUnless (
144
+ Platform . current != . windows,
145
+ " Temporarily skipping as we need to fix these tests to use the cmake-built swift-syntax libraries on Windows. "
146
+ )
147
+
143
148
return try await shared. skipUnlessSupported ( file: file, line: line) {
144
149
do {
145
150
let project = try await SwiftPMTestProject (
Original file line number Diff line number Diff line change @@ -169,8 +169,8 @@ package class SwiftPMTestProject: MultiFileTestProject {
169
169
.macro(
170
170
name: " MyMacros " ,
171
171
swiftSettings: [.unsafeFlags([
172
- " -I " , " \( moduleSearchPath) " ,
173
- " -Xcc " , " -fmodule-map-file= \( try swiftSyntaxCShimsModulemap. filePath) "
172
+ " -I " , # " \( moduleSearchPath) " # ,
173
+ " -Xcc " , # " -fmodule-map-file= \( try swiftSyntaxCShimsModulemap. filePath) " #
174
174
])],
175
175
linkerSettings: [
176
176
.unsafeFlags([
You can’t perform that action at this time.
0 commit comments