From: Daniel Malea Date: Tue, 20 Nov 2012 16:07:33 +0000 (+0000) Subject: Skip dsym tests on Linux X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a75004917151ec417dc9c3357444bdf9abe0aad5;p=platform%2Fupstream%2Fllvm.git Skip dsym tests on Linux llvm-svn: 168370 --- diff --git a/lldb/test/dotest.py b/lldb/test/dotest.py index 78ba02a..500559c 100755 --- a/lldb/test/dotest.py +++ b/lldb/test/dotest.py @@ -95,7 +95,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 = 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