[Lldb-commits] [lldb] r168370 - /lldb/trunk/test/dotest.py

Daniel Malea daniel.malea at intel.com
Tue Nov 20 08:07:33 PST 2012


Author: dmalea
Date: Tue Nov 20 10:07:33 2012
New Revision: 168370

URL: http://llvm.org/viewvc/llvm-project?rev=168370&view=rev
Log:
Skip dsym tests on Linux


Modified:
    lldb/trunk/test/dotest.py

Modified: lldb/trunk/test/dotest.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/dotest.py?rev=168370&r1=168369&r2=168370&view=diff
==============================================================================
--- lldb/trunk/test/dotest.py (original)
+++ lldb/trunk/test/dotest.py Tue Nov 20 10:07:33 2012
@@ -95,7 +95,7 @@
 # Use @dsym_test or @dwarf_test decorators, defined in lldbtest.py, to mark a test
 # as a dsym or dwarf test.  Use '-N dsym' or '-N dwarf' to exclude dsym or dwarf
 # tests from running.
-dont_do_dsym_test = False
+dont_do_dsym_test = "linux" in sys.platform
 dont_do_dwarf_test = False
 
 # The blacklist is optional (-b blacklistFile) and allows a central place to skip





More information about the lldb-commits mailing list