Fixing a bunch of i386 testsuite failures

llvm-svn: 155510
This commit is contained in:
Enrico Granata 2012-04-25 00:13:06 +00:00
parent 216d91f16e
commit 45034810aa
2 changed files with 5 additions and 5 deletions

View File

@ -84,7 +84,7 @@ class CmdPythonTestCase(TestBase):
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",

View File

@ -33,10 +33,10 @@ class ImportTestCase(TestBase):
# 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')