diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2010-10-14 17:31:24 +0000 |
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2010-10-14 17:31:24 +0000 |
| commit | aadcef54def3f0e3d6c00a02565e42a91c44c024 (patch) | |
| tree | 5bd8c6c715af629209ea0bb577e1a6b87f054718 /lldb/test/macosx/universal/TestUniversal.py | |
| parent | d65924f4a005216e5508d56348ac3c17f1f7a37e (diff) | |
| download | bcm5719-llvm-aadcef54def3f0e3d6c00a02565e42a91c44c024.tar.gz bcm5719-llvm-aadcef54def3f0e3d6c00a02565e42a91c44c024.zip | |
Make calling the super class's setUp() method less fragile.
llvm-svn: 116490
Diffstat (limited to 'lldb/test/macosx/universal/TestUniversal.py')
| -rw-r--r-- | lldb/test/macosx/universal/TestUniversal.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/test/macosx/universal/TestUniversal.py b/lldb/test/macosx/universal/TestUniversal.py index 935cf30303f..17f5e702224 100644 --- a/lldb/test/macosx/universal/TestUniversal.py +++ b/lldb/test/macosx/universal/TestUniversal.py @@ -10,7 +10,8 @@ class UniversalTestCase(TestBase): mydir = "macosx/universal" def setUp(self): - super(UniversalTestCase, self).setUp() + # Call super's setUp(). + TestBase.setUp(self) # Find the line number to break inside main(). self.line = line_number('main.c', '// Set break point at this line.') |

