@@ -12,29 +12,9 @@ def test(self):
12
12
"""Test that you can use register names in image lookup in a swift frame."""
13
13
self .build ()
14
14
(target , process , thread , breakpoint ) = lldbutil .run_to_source_breakpoint (self ,
15
- "break here to check image lookup" , lldb .SBFileSpec ("main.swift" ))
15
+ "break here to check image lookup" , lldb .SBFileSpec ("main.swift" ))
16
16
# I don't want to be too specific in what we print for image lookup,
17
17
# we're testing that the address expression for the pc worked.
18
18
self .expect ("image lookup -va $pc" , substrs = ["doSomething" ])
19
19
self .expect ("image lookup -va $pc+4" , substrs = ["doSomething" ])
20
-
21
- def test_using_alias (self ):
22
- """Test that you can use register names in image lookup in a swift frame."""
23
- self .build ()
24
- (target , process , thread , breakpoint ) = lldbutil .run_to_source_breakpoint (self ,
25
- "break here to check image lookup" , lldb .SBFileSpec ("main.swift" ))
26
- # I don't want to be too specific in what we print for image lookup,
27
- # we're testing that the address expression for the pc worked.
28
- self .expect ("target modules lookup -va $pc" , substrs = ["doSomething" ])
29
- self .expect ("target modules lookup -va $pc+4" , substrs = ["doSomething" ])
30
-
31
- def test_using_separate_options (self ):
32
- """Test that you can use register names in image lookup in a swift frame."""
33
- self .build ()
34
- (target , process , thread , breakpoint ) = lldbutil .run_to_source_breakpoint (self ,
35
- "break here to check image lookup" , lldb .SBFileSpec ("main.swift" ))
36
- # I don't want to be too specific in what we print for image lookup,
37
- # we're testing that the address expression for the pc worked.
38
- self .expect ("target modules lookup -v -a $pc" , substrs = ["doSomething" ])
39
- self .expect ("target modules lookup -v -a $pc+4" , substrs = ["doSomething" ])
40
20
0 commit comments