diff options
author | Francis Ricci <francisjricci@gmail.com> | 2017-05-05 17:18:08 +0000 |
---|---|---|
committer | Francis Ricci <francisjricci@gmail.com> | 2017-05-05 17:18:08 +0000 |
commit | f88bf5acfe787ada12e330027cd49f033ae97355 (patch) | |
tree | 74f8db8f00abbf9d17a6c5f06b17543ce59ceb35 /lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteHostInfo.py | |
parent | 050af67ea81edef58b0a76f011c7bd1b7b0b2dd0 (diff) | |
download | bcm5719-llvm-f88bf5acfe787ada12e330027cd49f033ae97355.tar.gz bcm5719-llvm-f88bf5acfe787ada12e330027cd49f033ae97355.zip |
Add missing 'arch' key to valid qHostInfo keys
Summary:
'arch' is a valid qHostInfo key, but the unit
test for qHostInfo did not include it in the set of possible keys.
Reviewers: tfiala, labath
Subscribers: lldb-commits
Differential Revision: https://reviews.llvm.org/D32711
llvm-svn: 302260
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteHostInfo.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteHostInfo.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteHostInfo.py b/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteHostInfo.py index 5089ee85773..d84511d5427 100644 --- a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteHostInfo.py +++ b/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteHostInfo.py @@ -14,6 +14,7 @@ class TestGdbRemoteHostInfo(GdbRemoteTestCaseBase): mydir = TestBase.compute_mydir(__file__) KNOWN_HOST_INFO_KEYS = set([ + "arch", "cputype", "cpusubtype", "distribution_id", |