Skip 32-bit testing of check_public_api_headers (on all platforms, not just Mac OS X)

- since the test program needs to link with LLDB, the test is invalid in 32-bit mode.

llvm-svn: 173372
This commit is contained in:
Daniel Malea 2013-01-24 21:01:12 +00:00
parent 62db5066e9
commit db14eb25a0
1 changed files with 2 additions and 2 deletions

View File

@ -21,8 +21,8 @@ class SBDirCheckerCase(TestBase):
def test_sb_api_directory(self):
"""Test the SB API directory and make sure there's no unwanted stuff."""
if sys.platform.startswith("darwin") and self.getArchitecture() == "i386":
self.skipTest("LLDB.framework built 64-bit")
if self.getArchitecture() == "i386":
self.skipTest("LLDB is 64-bit and cannot be linked to 32-bit test program.")
# Call the program generator to produce main.cpp.
self.generate_main_cpp()