Skip to content

Commit 8f62569

Browse files
committed
Fix test
1 parent 317a766 commit 8f62569

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/DebugInfo/module-alias-load-module.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88
/// Create a module Foo that imports Cat with -module-alias Cat=Bar
99
// RUN: %target-swift-frontend -emit-ir -module-name Foo -module-alias Cat=Bar %s -I %t -g -o - | %FileCheck %s
1010

11+
// CHECK-DAG: ![[FILE:[0-9]+]] = !DIFile(filename: "{{.*}}test{{/|\\\\}}DebugInfo{{/|\\\\}}module-alias-load-module.swift"
1112
// CHECK-DAG: ![[BARMODULE:[0-9]+]] = !DIModule({{.*}}, name: "Bar"
12-
// CHECK-DAG: !DIImportedEntity(tag: DW_TAG_imported_module, scope: ![[THISFILE]], entity: ![[BARMODULE]]
13+
// CHECK-DAG: !DIImportedEntity(tag: DW_TAG_imported_module, scope: ![[FILE]], entity: ![[BARMODULE]]
1314

1415
import Cat
1516
public func meow() -> Cat.Klass? { return nil }

0 commit comments

Comments
 (0)