diff options
author | Todd Fiala <todd.fiala@gmail.com> | 2016-09-27 17:17:21 +0000 |
---|---|---|
committer | Todd Fiala <todd.fiala@gmail.com> | 2016-09-27 17:17:21 +0000 |
commit | 789ea82fa3d1c8fd535014251b48ee9e496c1d0a (patch) | |
tree | fbbf630d678eec5f596e6bdd1bdd5ab26ddfa4c1 /lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/TestFatArchives.py | |
parent | b66d1aab25e415061d57b72487d26d2b3b05f9c2 (diff) | |
download | bcm5719-llvm-789ea82fa3d1c8fd535014251b48ee9e496c1d0a.tar.gz bcm5719-llvm-789ea82fa3d1c8fd535014251b48ee9e496c1d0a.zip |
convert TestFatArchives.py over to no-debug-info test
We only use the .o-style debug info here regardless, so having
it run all three debuginfo styles was a waste.
This also strips out the custom build function and uses the
TestBase.build() method.
llvm-svn: 282508
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/TestFatArchives.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/TestFatArchives.py | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/TestFatArchives.py b/lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/TestFatArchives.py index 1feab9d1c4b..d62ccbff87f 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/TestFatArchives.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/TestFatArchives.py @@ -13,23 +13,16 @@ from lldbsuite.test.lldbtest import * from lldbsuite.test import lldbutil -def execute_command(command): - # print('%% %s' % (command)) - (exit_status, output) = seven.get_command_status_output(command) - # if output: - # print(output) - # print('status = %u' % (exit_status)) - return exit_status - - class FatArchiveTestCase(TestBase): mydir = TestBase.compute_mydir(__file__) + NO_DEBUG_INFO_TESTCASE = True + @skipUnlessDarwin - def test(self): + def test_breakpoint_resolution_dwarf(self): if self.getArchitecture() == 'x86_64': - execute_command("make CC='%s'" % (os.environ["CC"])) + self.build() self.main() else: self.skipTest( |