[Lldb-commits] [lldb] r375144 - Disable TestProcessList on windows
Walter Erquinigo via lldb-commits
lldb-commits at lists.llvm.org
Thu Oct 17 10:53:45 PDT 2019
Author: wallace
Date: Thu Oct 17 10:53:44 2019
New Revision: 375144
URL: http://llvm.org/viewvc/llvm-project?rev=375144&view=rev
Log:
Disable TestProcessList on windows
Summary: `platform process list -v` on windows doesn't show all the process arguments, making this test useless for that platform
Reviewers: stella.stamenova
Subscribers: lldb-commits
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D69114
Modified:
lldb/trunk/packages/Python/lldbsuite/test/commands/platform/process/TestProcessList.py
Modified: lldb/trunk/packages/Python/lldbsuite/test/commands/platform/process/TestProcessList.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/commands/platform/process/TestProcessList.py?rev=375144&r1=375143&r2=375144&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/commands/platform/process/TestProcessList.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/commands/platform/process/TestProcessList.py Thu Oct 17 10:53:44 2019
@@ -19,6 +19,7 @@ class ProcessListTestCase(TestBase):
NO_DEBUG_INFO_TESTCASE = True
+ @skipIfWindows # https://bugs.llvm.org/show_bug.cgi?id=43702
def test_process_list_with_args(self):
"""Test process list show process args"""
self.build()
More information about the lldb-commits
mailing list