Don't attempt DSym tests on Windows.

llvm-svn: 236620
This commit is contained in:
Adrian McCarthy 2015-05-06 18:19:51 +00:00
parent f39dc63053
commit c99d2fadb5
1 changed files with 2 additions and 3 deletions

View File

@ -1364,11 +1364,10 @@ target_platform = lldb.DBG.GetSelectedPlatform().GetTriple().split('-')[2]
# 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)