diff options
author | Pavel Labath <labath@google.com> | 2016-03-31 14:22:52 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2016-03-31 14:22:52 +0000 |
commit | 3f081c82109a2f12d254abd4c41b185d9bfaabf4 (patch) | |
tree | e8b634e21104308b4321b966f7a4e6d59f071e61 /lldb/packages/Python/lldbsuite/test/tools/lldb-server/gdbremote_testcase.py | |
parent | cd835ad8766d4c06db11a76befc2ce072f9ae697 (diff) | |
download | bcm5719-llvm-3f081c82109a2f12d254abd4c41b185d9bfaabf4.tar.gz bcm5719-llvm-3f081c82109a2f12d254abd4c41b185d9bfaabf4.zip |
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
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/tools/lldb-server/gdbremote_testcase.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/tools/lldb-server/gdbremote_testcase.py | 2 |
1 files changed, 2 insertions, 0 deletions
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" |