From 321b4bba76cf71b2f4b1e78f1746ad92fce168c1 Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Mon, 11 Jan 2016 18:49:30 +0000 Subject: Don't run dwo tests for windows targets. -gsplit-dwarf is not implemented by clang on Windows. As such, all the dwo tests are having the -gsplit-dwarf command line option completely ignored, and the result is you get regular dwarf debug information, and it's just running the exact same tests twice, doubling the length of the test suite for no good reason. llvm-svn: 257363 --- lldb/packages/Python/lldbsuite/test/test_categories.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lldb/packages/Python/lldbsuite') diff --git a/lldb/packages/Python/lldbsuite/test/test_categories.py b/lldb/packages/Python/lldbsuite/test/test_categories.py index e3e44609105..72b7afdf724 100644 --- a/lldb/packages/Python/lldbsuite/test/test_categories.py +++ b/lldb/packages/Python/lldbsuite/test/test_categories.py @@ -44,7 +44,8 @@ def unique_string_match(yourentry, list): def is_supported_on_platform(category, platform): if category == "dwo": - return platform in ["linux", "freebsd", "windows"] + # -gsplit-dwarf is not implemented by clang on Windows. + return platform in ["linux", "freebsd"] elif category == "dsym": return platform in ["darwin", "macosx", "ios"] return True -- cgit v1.2.3