[Lldb-commits] [lldb] r155220 - /lldb/branches/lldb-platform-work/test/functionalities/abbreviation/TestAbbreviations.py

Johnny Chen johnny.chen at apple.com
Fri Apr 20 12:13:51 PDT 2012


Author: johnny
Date: Fri Apr 20 14:13:50 2012
New Revision: 155220

URL: http://llvm.org/viewvc/llvm-project?rev=155220&view=rev
Log:
Use "file", i.e., no abbreviation.  We're exactly matching the command verbatim when dealing with remote testsuite execution.
For more details, see TestBase.runCmd().

Modified:
    lldb/branches/lldb-platform-work/test/functionalities/abbreviation/TestAbbreviations.py

Modified: lldb/branches/lldb-platform-work/test/functionalities/abbreviation/TestAbbreviations.py
URL: http://llvm.org/viewvc/llvm-project/lldb/branches/lldb-platform-work/test/functionalities/abbreviation/TestAbbreviations.py?rev=155220&r1=155219&r2=155220&view=diff
==============================================================================
--- lldb/branches/lldb-platform-work/test/functionalities/abbreviation/TestAbbreviations.py (original)
+++ lldb/branches/lldb-platform-work/test/functionalities/abbreviation/TestAbbreviations.py Fri Apr 20 14:13:50 2012
@@ -77,7 +77,10 @@
 
     def running_abbreviations (self):
         exe = os.path.join (os.getcwd(), "a.out")
-        self.expect("fil " + exe,
+        # Use "file", i.e., no abbreviation.  We're exactly matching the command
+        # verbatim when dealing with remote testsuite execution.
+        # For more details, see TestBase.runCmd().
+        self.expect("file " + exe,
                     patterns = [ "Current executable set to .*a.out.*" ])
 
         self.expect("_regexp-b product",





More information about the lldb-commits mailing list