diff options
author | Johnny Chen <johnny.chen@apple.com> | 2011-04-25 18:20:52 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2011-04-25 18:20:52 +0000 |
commit | 6b2a27c7773f33ea0e7e8c319a8d4393c1168ec5 (patch) | |
tree | feeefab7a1cc385a61c2bd22c9627c8fdbb2b2c6 /lldb/test/cpp/dynamic-value | |
parent | 2b14d9b3f6d0cc2d9175b0fa173dfeff807d7386 (diff) | |
download | bcm5719-llvm-6b2a27c7773f33ea0e7e8c319a8d4393c1168ec5.tar.gz bcm5719-llvm-6b2a27c7773f33ea0e7e8c319a8d4393c1168ec5.zip |
Fix test failure for '-A i386'.
llvm-svn: 130134
Diffstat (limited to 'lldb/test/cpp/dynamic-value')
-rw-r--r-- | lldb/test/cpp/dynamic-value/TestDynamicValue.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/cpp/dynamic-value/TestDynamicValue.py b/lldb/test/cpp/dynamic-value/TestDynamicValue.py index c0d323cb76e..69a0d559d50 100644 --- a/lldb/test/cpp/dynamic-value/TestDynamicValue.py +++ b/lldb/test/cpp/dynamic-value/TestDynamicValue.py @@ -93,7 +93,7 @@ class DynamicValueTestCase(TestBase): # Create a target from the debugger. - target = self.dbg.CreateTargetWithFileAndArch (exe, lldb.LLDB_ARCH_DEFAULT) + target = self.dbg.CreateTarget (exe) self.assertTrue(target.IsValid(), VALID_TARGET) # Set up our breakpoints: |