diff options
author | Daniel Malea <daniel.malea@intel.com> | 2013-01-24 21:01:12 +0000 |
---|---|---|
committer | Daniel Malea <daniel.malea@intel.com> | 2013-01-24 21:01:12 +0000 |
commit | db14eb25a0e8943e491c29802e36a4cede3632b9 (patch) | |
tree | 692721f8de8294cd2d61094d23ad89783803870d /lldb/test/api/check_public_api_headers/TestPublicAPIHeaders.py | |
parent | 62db5066e91e966b4b31fedd2a21fb9ab28118be (diff) | |
download | bcm5719-llvm-db14eb25a0e8943e491c29802e36a4cede3632b9.tar.gz bcm5719-llvm-db14eb25a0e8943e491c29802e36a4cede3632b9.zip |
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
Diffstat (limited to 'lldb/test/api/check_public_api_headers/TestPublicAPIHeaders.py')
-rw-r--r-- | lldb/test/api/check_public_api_headers/TestPublicAPIHeaders.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/api/check_public_api_headers/TestPublicAPIHeaders.py b/lldb/test/api/check_public_api_headers/TestPublicAPIHeaders.py index 2b50c8bf31c..b7a91069c72 100644 --- a/lldb/test/api/check_public_api_headers/TestPublicAPIHeaders.py +++ b/lldb/test/api/check_public_api_headers/TestPublicAPIHeaders.py @@ -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() |