[Lldb-commits] [lldb] r155510 - in /lldb/trunk/test/functionalities/command_script: TestCommandScript.py import/TestImport.py

Enrico Granata egranata at apple.com
Tue Apr 24 17:13:07 PDT 2012


Author: enrico
Date: Tue Apr 24 19:13:06 2012
New Revision: 155510

URL: http://llvm.org/viewvc/llvm-project?rev=155510&view=rev
Log:
Fixing a bunch of i386 testsuite failures

Modified:
    lldb/trunk/test/functionalities/command_script/TestCommandScript.py
    lldb/trunk/test/functionalities/command_script/import/TestImport.py

Modified: lldb/trunk/test/functionalities/command_script/TestCommandScript.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/command_script/TestCommandScript.py?rev=155510&r1=155509&r2=155510&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/command_script/TestCommandScript.py (original)
+++ lldb/trunk/test/functionalities/command_script/TestCommandScript.py Tue Apr 24 19:13:06 2012
@@ -84,7 +84,7 @@
 
         self.expect("help targetname",
                     substrs = ['Run Python function welcome.target_name_imp',
-                               'This command takes \'raw\' input',
+                               'This command takes','\'raw\' input',
                                'quote stuff'])
 
         self.expect("longwait",

Modified: lldb/trunk/test/functionalities/command_script/import/TestImport.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/command_script/import/TestImport.py?rev=155510&r1=155509&r2=155510&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/command_script/import/TestImport.py (original)
+++ lldb/trunk/test/functionalities/command_script/import/TestImport.py Tue Apr 24 19:13:06 2012
@@ -33,10 +33,10 @@
         # Execute the cleanup function during test case tear down.
         self.addTearDownHook(cleanup)
 
-        self.runCmd("command script import ./foo/foo.py")
-        self.runCmd("command script import ./foo/foo2.py")
-        self.runCmd("command script import ./foo/bar/foobar.py")
-        self.runCmd("command script import ./bar/bar.py")
+        self.runCmd("command script import ./foo/foo.py --allow-reload")
+        self.runCmd("command script import ./foo/foo2.py --allow-reload")
+        self.runCmd("command script import ./foo/bar/foobar.py --allow-reload")
+        self.runCmd("command script import ./bar/bar.py --allow-reload")
 
         self.expect("command script import ./nosuchfile.py",
                 error=True, startstr='error: module importing failed')





More information about the lldb-commits mailing list