2020-03-31 10:47:20 +02:00
|
|
|
"""Test the SBPlatform APIs."""
|
|
|
|
|
|
|
|
|
|
from lldbsuite.test.decorators import *
|
|
|
|
|
from lldbsuite.test.lldbtest import *
|
|
|
|
|
|
2023-05-25 08:48:57 -07:00
|
|
|
|
2020-03-31 10:47:20 +02:00
|
|
|
class SBPlatformAPICase(TestBase):
|
|
|
|
|
NO_DEBUG_INFO_TESTCASE = True
|
|
|
|
|
|
2020-08-04 14:00:30 -07:00
|
|
|
@skipIfRemote # Remote environment not supported.
|
2020-03-31 10:47:20 +02:00
|
|
|
def test_run(self):
|
|
|
|
|
self.build()
|
|
|
|
|
plat = lldb.SBPlatform.GetHostPlatform()
|
|
|
|
|
|
|
|
|
|
os.environ["MY_TEST_ENV_VAR"] = "SBPlatformAPICase.test_run"
|
2023-05-25 08:48:57 -07:00
|
|
|
|
2020-03-31 10:47:20 +02:00
|
|
|
def cleanup():
|
|
|
|
|
del os.environ["MY_TEST_ENV_VAR"]
|
2023-05-25 08:48:57 -07:00
|
|
|
|
2020-03-31 10:47:20 +02:00
|
|
|
self.addTearDownHook(cleanup)
|
|
|
|
|
cmd = lldb.SBPlatformShellCommand(self.getBuildArtifact("a.out"))
|
2022-02-11 21:23:16 -08:00
|
|
|
self.assertSuccess(plat.Run(cmd))
|
2020-03-31 10:47:20 +02:00
|
|
|
self.assertIn("MY_TEST_ENV_VAR=SBPlatformAPICase.test_run", cmd.GetOutput())
|
2022-01-18 11:26:07 +01:00
|
|
|
|
|
|
|
|
def test_SetSDKRoot(self):
|
|
|
|
|
plat = lldb.SBPlatform("remote-linux") # arbitrary choice
|
|
|
|
|
self.assertTrue(plat)
|
|
|
|
|
plat.SetSDKRoot(self.getBuildDir())
|
2022-02-25 14:47:27 +01:00
|
|
|
self.dbg.SetSelectedPlatform(plat)
|
2022-01-18 11:26:07 +01:00
|
|
|
self.expect("platform status", substrs=["Sysroot:", self.getBuildDir()])
|
2022-02-25 14:47:27 +01:00
|
|
|
|
|
|
|
|
def test_SetCurrentPlatform_floating(self):
|
|
|
|
|
# floating platforms cannot be referenced by name until they are
|
|
|
|
|
# associated with a debugger
|
|
|
|
|
floating_platform = lldb.SBPlatform("remote-netbsd")
|
|
|
|
|
floating_platform.SetWorkingDirectory(self.getBuildDir())
|
|
|
|
|
self.assertSuccess(self.dbg.SetCurrentPlatform("remote-netbsd"))
|
|
|
|
|
dbg_platform = self.dbg.GetSelectedPlatform()
|
|
|
|
|
self.assertEqual(dbg_platform.GetName(), "remote-netbsd")
|
|
|
|
|
self.assertIsNone(dbg_platform.GetWorkingDirectory())
|
|
|
|
|
|
|
|
|
|
def test_SetCurrentPlatform_associated(self):
|
|
|
|
|
# associated platforms are found by name-based lookup
|
|
|
|
|
floating_platform = lldb.SBPlatform("remote-netbsd")
|
|
|
|
|
floating_platform.SetWorkingDirectory(self.getBuildDir())
|
|
|
|
|
orig_platform = self.dbg.GetSelectedPlatform()
|
|
|
|
|
|
|
|
|
|
self.dbg.SetSelectedPlatform(floating_platform)
|
|
|
|
|
self.dbg.SetSelectedPlatform(orig_platform)
|
|
|
|
|
self.assertSuccess(self.dbg.SetCurrentPlatform("remote-netbsd"))
|
|
|
|
|
dbg_platform = self.dbg.GetSelectedPlatform()
|
|
|
|
|
self.assertEqual(dbg_platform.GetName(), "remote-netbsd")
|
|
|
|
|
self.assertEqual(dbg_platform.GetWorkingDirectory(), self.getBuildDir())
|