From 3d3295daabf85c62514acc6929b5dbc9f527218c Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Tue, 25 Jun 2013 19:59:56 +0000 Subject: [PATCH] Skip dsym tests also on FreeBSD llvm-svn: 184874 --- lldb/test/dotest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/test/dotest.py b/lldb/test/dotest.py index c7d330c009e5..e9b60a32ab1e 100755 --- a/lldb/test/dotest.py +++ b/lldb/test/dotest.py @@ -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