Skip to content

Commit e786708

Browse files
committed
[Test] Fix TestSwiftDynamicTypeResolutionImportConflict
This depends on the order in which modules are imported. This doesn't change the meaning of the test itself. apple-llvm-split-commit: 0bbce8f6c24c134ab08da430377f8c593c5684f8 apple-llvm-split-dir: lldb/
1 parent 6c0b12b commit e786708

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

lldb/packages/Python/lldbsuite/test/lang/swift/clangimporter/dynamic_type_resolution_import_conflict/TestSwiftDynamicTypeResolutionImportConflict.py

+2-5
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,9 @@ def test(self):
5757
self.expect("fr v -d no-dynamic-values -- input",
5858
substrs=['(Dylib.LibraryProtocol) input'])
5959
self.expect("fr v -d run-target -- input",
60-
substrs=['(Dylib.LibraryProtocol) input'])
61-
# FIXME: substrs=['(main.FromMainModule) input'])
60+
substrs=['(a.FromMainModule) input'])
6261
self.expect("expr -d run-target -- input",
63-
"test that the expression evaluator can recover",
64-
substrs=['(Dylib.LibraryProtocol) $R0'])
65-
# FIXME: substrs=['(main.FromMainModule) input'])
62+
substrs=['(a.FromMainModule) $R0'])
6663

6764
if __name__ == '__main__':
6865
import atexit

0 commit comments

Comments
 (0)