Lines Matching full:platform
2 Test the lldb platform Python API.
17 # Verify the host platform is present by default.
23 "The host platform is present",
25 # Select another platform and verify that the platform is added to
26 # the platform list.
40 platform = self.dbg.GetPlatformAtIndex(platform_idx)
41 if platform.GetName() == platform_name:
49 # We've already tested that this one IS the host platform.
52 host_platform.IsConnected(), "The host platform is always connected"
61 num_platforms, 0, "There should be at least one platform available"
68 self.assertTrue(name_data and name_data.IsValid(), "Platform has a name")
72 "Platform name is a string",
75 desc_data and desc_data.IsValid(), "Platform has a description"
80 "Platform description is a string",
88 platform = self.dbg.GetSelectedPlatform()
89 self.assertTrue(platform.IsValid())
97 err = platform.Run(sh_cmd)