[Lldb-commits] [lldb] r142825 - /lldb/trunk/test/functionalities/abbreviation/TestAbbreviations.py
Johnny Chen
johnny.chen at apple.com
Mon Oct 24 11:24:54 PDT 2011
Author: johnny
Date: Mon Oct 24 13:24:54 2011
New Revision: 142825
URL: http://llvm.org/viewvc/llvm-project?rev=142825&view=rev
Log:
Fix test regressions due to the addition of 'display' alias to the top level commands, which conflicts
with the original 'dis' -> 'disassemble' unique expansion. Change it to 'disass' now.
Modified:
lldb/trunk/test/functionalities/abbreviation/TestAbbreviations.py
Modified: lldb/trunk/test/functionalities/abbreviation/TestAbbreviations.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/abbreviation/TestAbbreviations.py?rev=142825&r1=142824&r2=142825&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/abbreviation/TestAbbreviations.py (original)
+++ lldb/trunk/test/functionalities/abbreviation/TestAbbreviations.py Mon Oct 24 13:24:54 2011
@@ -131,7 +131,7 @@
# ARCH, if not specified, defaults to x86_64.
if self.getArchitecture() in ["", 'x86_64', 'i386']:
- self.expect("dis -f",
+ self.expect("disass -f",
startstr = "a.out`sum(int, int)",
substrs = [' push',
' mov',
More information about the lldb-commits
mailing list