forked from OSchip/llvm-project
Fixing a bunch of i386 testsuite failures
llvm-svn: 155510
This commit is contained in:
parent
216d91f16e
commit
45034810aa
|
@ -84,7 +84,7 @@ class CmdPythonTestCase(TestBase):
|
||||||
|
|
||||||
self.expect("help targetname",
|
self.expect("help targetname",
|
||||||
substrs = ['Run Python function welcome.target_name_imp',
|
substrs = ['Run Python function welcome.target_name_imp',
|
||||||
'This command takes \'raw\' input',
|
'This command takes','\'raw\' input',
|
||||||
'quote stuff'])
|
'quote stuff'])
|
||||||
|
|
||||||
self.expect("longwait",
|
self.expect("longwait",
|
||||||
|
|
|
@ -33,10 +33,10 @@ class ImportTestCase(TestBase):
|
||||||
# Execute the cleanup function during test case tear down.
|
# Execute the cleanup function during test case tear down.
|
||||||
self.addTearDownHook(cleanup)
|
self.addTearDownHook(cleanup)
|
||||||
|
|
||||||
self.runCmd("command script import ./foo/foo.py")
|
self.runCmd("command script import ./foo/foo.py --allow-reload")
|
||||||
self.runCmd("command script import ./foo/foo2.py")
|
self.runCmd("command script import ./foo/foo2.py --allow-reload")
|
||||||
self.runCmd("command script import ./foo/bar/foobar.py")
|
self.runCmd("command script import ./foo/bar/foobar.py --allow-reload")
|
||||||
self.runCmd("command script import ./bar/bar.py")
|
self.runCmd("command script import ./bar/bar.py --allow-reload")
|
||||||
|
|
||||||
self.expect("command script import ./nosuchfile.py",
|
self.expect("command script import ./nosuchfile.py",
|
||||||
error=True, startstr='error: module importing failed')
|
error=True, startstr='error: module importing failed')
|
||||||
|
|
Loading…
Reference in New Issue