diff options
author | Enrico Granata <egranata@apple.com> | 2012-04-25 00:13:06 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2012-04-25 00:13:06 +0000 |
commit | 45034810aa173a54d8e28c13f818c02bf7f5d2ee (patch) | |
tree | d95c6ca6946c3e7d9934e3fc409c1f93a8060e4a /lldb/test/functionalities/command_script/import/TestImport.py | |
parent | 216d91f16e9f64146302fafdb2eedca8d91835c3 (diff) | |
download | bcm5719-llvm-45034810aa173a54d8e28c13f818c02bf7f5d2ee.tar.gz bcm5719-llvm-45034810aa173a54d8e28c13f818c02bf7f5d2ee.zip |
Fixing a bunch of i386 testsuite failures
llvm-svn: 155510
Diffstat (limited to 'lldb/test/functionalities/command_script/import/TestImport.py')
-rw-r--r-- | lldb/test/functionalities/command_script/import/TestImport.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/test/functionalities/command_script/import/TestImport.py b/lldb/test/functionalities/command_script/import/TestImport.py index 1e949efd31f..1acdfed6941 100644 --- a/lldb/test/functionalities/command_script/import/TestImport.py +++ b/lldb/test/functionalities/command_script/import/TestImport.py @@ -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') |