From 3f081c82109a2f12d254abd4c41b185d9bfaabf4 Mon Sep 17 00:00:00 2001 From: Pavel Labath Date: Thu, 31 Mar 2016 14:22:52 +0000 Subject: Don't vary debug info for lldb-server tests Summary: Debug info is used only by the client and lldb-server tests do not even have the client component running, as they communicate with the server directly. Therefore, running the tests for each debug info type is unnecessarry. This adds general ability to mark a test class as not dependent on debug info, and marks all lldb-server tests as such. Reviewers: tberghammer, tfiala Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D18598 llvm-svn: 265017 --- .../Python/lldbsuite/test/tools/lldb-server/gdbremote_testcase.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lldb/packages/Python/lldbsuite/test/tools') diff --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/gdbremote_testcase.py b/lldb/packages/Python/lldbsuite/test/tools/lldb-server/gdbremote_testcase.py index 49323cd4078..61327e6f461 100644 --- a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/gdbremote_testcase.py +++ b/lldb/packages/Python/lldbsuite/test/tools/lldb-server/gdbremote_testcase.py @@ -29,6 +29,8 @@ class _ConnectionRefused(IOError): class GdbRemoteTestCaseBase(TestBase): + NO_DEBUG_INFO_TESTCASE = True + _TIMEOUT_SECONDS = 7 _GDBREMOTE_KILL_PACKET = "$k#6b" -- cgit v1.2.3