[Lldb-commits] [PATCH] D32711: Add missing 'arch' key to valid	qHostInfo keys
    Francis Ricci via Phabricator via lldb-commits 
    lldb-commits at lists.llvm.org
       
    Mon May  1 11:41:38 PDT 2017
    
    
  
fjricci created this revision.
'arch' is a valid qHostInfo key, but the unit
test for qHostInfo did not include it in the set of possible keys.
https://reviews.llvm.org/D32711
Files:
  packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteHostInfo.py
Index: packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteHostInfo.py
===================================================================
--- packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteHostInfo.py
+++ packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteHostInfo.py
@@ -14,6 +14,7 @@
     mydir = TestBase.compute_mydir(__file__)
 
     KNOWN_HOST_INFO_KEYS = set([
+        "arch",
         "cputype",
         "cpusubtype",
         "distribution_id",
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D32711.97322.patch
Type: text/x-patch
Size: 493 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20170501/f7dbca7e/attachment.bin>
    
    
More information about the lldb-commits
mailing list