[Lldb-commits] [lldb] r173372 - /lldb/trunk/test/api/check_public_api_headers/TestPublicAPIHeaders.py

Daniel Malea daniel.malea at intel.com
Thu Jan 24 13:01:12 PST 2013


Author: dmalea
Date: Thu Jan 24 15:01:12 2013
New Revision: 173372

URL: http://llvm.org/viewvc/llvm-project?rev=173372&view=rev
Log:
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.


Modified:
    lldb/trunk/test/api/check_public_api_headers/TestPublicAPIHeaders.py

Modified: lldb/trunk/test/api/check_public_api_headers/TestPublicAPIHeaders.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/api/check_public_api_headers/TestPublicAPIHeaders.py?rev=173372&r1=173371&r2=173372&view=diff
==============================================================================
--- lldb/trunk/test/api/check_public_api_headers/TestPublicAPIHeaders.py (original)
+++ lldb/trunk/test/api/check_public_api_headers/TestPublicAPIHeaders.py Thu Jan 24 15:01:12 2013
@@ -21,8 +21,8 @@
     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()





More information about the lldb-commits mailing list