[Lldb-commits] [lldb] r236620 - Don't attempt DSym tests on Windows.
Adrian McCarthy
amccarth at google.com
Wed May 6 11:19:51 PDT 2015
Author: amccarth
Date: Wed May 6 13:19:51 2015
New Revision: 236620
URL: http://llvm.org/viewvc/llvm-project?rev=236620&view=rev
Log:
Don't attempt DSym tests on Windows.
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=236620&r1=236619&r2=236620&view=diff
==============================================================================
--- lldb/trunk/test/dotest.py (original)
+++ lldb/trunk/test/dotest.py Wed May 6 13:19:51 2015
@@ -1364,11 +1364,10 @@ target_platform = lldb.DBG.GetSelectedPl
# 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 = dont_do_dsym_test or "linux" in target_platform or "freebsd" in target_platform
+dont_do_dsym_test = dont_do_dsym_test or "linux" in target_platform or "freebsd" in target_platform or "windows" in target_platform
# Don't do debugserver tests on everything except OS X.
-# Something for Windows here?
-dont_do_debugserver_test = "linux" in target_platform or "freebsd" in target_platform
+dont_do_debugserver_test = "linux" in target_platform or "freebsd" in target_platform or "windows" in target_platform
# Don't do lldb-server (llgs) tests on anything except Linux.
dont_do_llgs_test = not ("linux" in target_platform)
More information about the lldb-commits
mailing list