[lldb] Add addressing_bits to KNOWN_HOST_INFO_KEYS and sort the list

This fixes TestGdbRemoteHostInfo on Apple Silicon.

GitOrigin-RevId: a749bd76394c05b423cd643633188eb09f59fbe8
diff --git a/test/API/tools/lldb-server/TestGdbRemoteHostInfo.py b/test/API/tools/lldb-server/TestGdbRemoteHostInfo.py
index 01c2a38..e691168 100644
--- a/test/API/tools/lldb-server/TestGdbRemoteHostInfo.py
+++ b/test/API/tools/lldb-server/TestGdbRemoteHostInfo.py
@@ -14,22 +14,23 @@
     mydir = TestBase.compute_mydir(__file__)
 
     KNOWN_HOST_INFO_KEYS = set([
+        "addressing_bits",
         "arch",
-        "cputype",
         "cpusubtype",
+        "cputype",
+        "default_packet_timeout",
         "distribution_id",
         "endian",
         "hostname",
-        "ostype",
+        "maccatalyst_version",
         "os_build",
         "os_kernel",
         "os_version",
-        "maccatalyst_version",
+        "ostype",
         "ptrsize",
         "triple",
         "vendor",
         "watchpoint_exceptions_received",
-        "default_packet_timeout",
     ])
 
     DARWIN_REQUIRED_HOST_INFO_KEYS = set([