Skip to content

Commit 8277f8b

Browse files
committed
test: make test paths more portable
Windows uses `\` as the separator rather than `/`. Adjust the tests for this.
1 parent aea3626 commit 8277f8b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/ParseableInterface/ModuleCache/RebuildRemarks/rebuild-transitive-import.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919

2020
import OuterModule
2121

22-
// CHECK: rebuilding module 'InnerModule' from interface '{{.*}}/Build/InnerModule.swiftinterface'
23-
// CHECK: compiled module is out of date: '{{.*}}/Build/InnerModule.swiftmodule'
24-
// CHECK: dependency is out of date: '{{.*}}/Build/InnerModule.swiftinterface'
22+
// CHECK: rebuilding module 'InnerModule' from interface '{{.*}}{{[/\\]}}Build{{[/\\]}}InnerModule.swiftinterface'
23+
// CHECK: compiled module is out of date: '{{.*}}{{[/\\]}}Build{{[/\\]}}InnerModule.swiftmodule'
24+
// CHECK: dependency is out of date: '{{.*}}{{[/\\]}}Build{{[/\\]}}InnerModule.swiftinterface'

0 commit comments

Comments
 (0)