[Lldb-commits] [lldb] r184874 - Skip dsym tests also on FreeBSD

Ed Maste emaste at freebsd.org
Tue Jun 25 12:59:56 PDT 2013


Author: emaste
Date: Tue Jun 25 14:59:56 2013
New Revision: 184874

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


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=184874&r1=184873&r2=184874&view=diff
==============================================================================
--- lldb/trunk/test/dotest.py (original)
+++ lldb/trunk/test/dotest.py Tue Jun 25 14:59:56 2013
@@ -102,7 +102,7 @@ just_do_benchmarks_test = False
 # 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 = "linux" in sys.platform
+dont_do_dsym_test = "linux" in sys.platform or "freebsd" 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