diff options
author | Adrian McCarthy <amccarth@google.com> | 2015-05-06 18:19:51 +0000 |
---|---|---|
committer | Adrian McCarthy <amccarth@google.com> | 2015-05-06 18:19:51 +0000 |
commit | c99d2fadb59254eca921a8fa97a0e2d69122ef12 (patch) | |
tree | 66c51ed90223531fa73647ed9fb3e5d5e7274f75 /lldb/test/dotest.py | |
parent | f39dc63053a7cc9dc049f1278803a200faf2473f (diff) | |
download | bcm5719-llvm-c99d2fadb59254eca921a8fa97a0e2d69122ef12.tar.gz bcm5719-llvm-c99d2fadb59254eca921a8fa97a0e2d69122ef12.zip |
Don't attempt DSym tests on Windows.
llvm-svn: 236620
Diffstat (limited to 'lldb/test/dotest.py')
-rwxr-xr-x | lldb/test/dotest.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lldb/test/dotest.py b/lldb/test/dotest.py index 99ecac7926e..c6485f53c55 100755 --- a/lldb/test/dotest.py +++ b/lldb/test/dotest.py @@ -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) |