diff options
Diffstat (limited to 'lldb/test/functionalities/abbreviation/TestAbbreviations.py')
-rw-r--r-- | lldb/test/functionalities/abbreviation/TestAbbreviations.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/functionalities/abbreviation/TestAbbreviations.py b/lldb/test/functionalities/abbreviation/TestAbbreviations.py index 4362fb79b3a..48956352137 100644 --- a/lldb/test/functionalities/abbreviation/TestAbbreviations.py +++ b/lldb/test/functionalities/abbreviation/TestAbbreviations.py @@ -150,8 +150,8 @@ class AbbreviationsTestCase(TestBase): # ARCH, if not specified, defaults to x86_64. if self.getArchitecture() in ["", 'x86_64', 'i386']: self.expect("dis -f", - startstr = "a.out`sum(int, int)", - substrs = [' mov', + substrs = ['<sum(int, int)>:', + ' mov', ' addl ', 'ret']) |