blob: 25406429ef978f472b5c88dfcc7576ef0288b29b [file] [log] [blame]
Johnny Chenc6401792011-03-30 21:19:59 +00001"""
2Test some lldb platform commands.
3"""
4
5import os, time
6import unittest2
7import lldb
8from lldbtest import *
9
10class PlatformCommandTestCase(TestBase):
11
Greg Clayton4570d3e2013-12-10 23:19:29 +000012 mydir = TestBase.compute_mydir(__file__)
Johnny Chenc6401792011-03-30 21:19:59 +000013
14 def test_help_platform(self):
15 self.runCmd("help platform")
16
17 def test_list(self):
18 self.expect("platform list",
19 patterns = ['^Available platforms:'])
20
21 def test_process_list(self):
22 self.expect("platform process list",
Jason Molenda75906f42014-10-02 06:17:15 +000023 substrs = ['PID', 'TRIPLE', 'NAME'])
Johnny Chenc6401792011-03-30 21:19:59 +000024
Johnny Chenfa92ecc2011-05-09 20:51:47 +000025 def test_process_info_with_no_arg(self):
26 """This is expected to fail and to return a proper error message."""
27 self.expect("platform process info", error=True,
28 substrs = ['one or more process id(s) must be specified'])
29
Johnny Chenc6401792011-03-30 21:19:59 +000030 def test_status(self):
31 self.expect("platform status",
32 substrs = ['Platform', 'Triple', 'OS Version', 'Kernel', 'Hostname'])
33
Daniel Maleabb247fb2013-08-27 21:01:01 +000034 def test_shell(self):
35 """ Test that the platform shell command can invoke ls. """
Zachary Turner57ee6d62014-12-08 21:50:05 +000036 if sys.platform.startswith("win32"):
37 self.expect("platform shell dir c:\\", substrs = ["Windows", "Program Files"])
38 else:
39 self.expect("platform shell ls /", substrs = ["dev", "tmp", "usr"])
Daniel Maleabb247fb2013-08-27 21:01:01 +000040
41 def test_shell_builtin(self):
42 """ Test a shell built-in command (echo) """
43 self.expect("platform shell echo hello lldb",
44 substrs = ["hello lldb"])
45
46 #FIXME: re-enable once platform shell -t can specify the desired timeout
47 def test_shell_timeout(self):
48 """ Test a shell built-in command (sleep) that times out """
49 self.skipTest("due to taking too long to complete.")
50 self.expect("platform shell sleep 15", error=True,
51 substrs = ["error: timed out waiting for shell command to complete"])
52
Johnny Chenc6401792011-03-30 21:19:59 +000053
54if __name__ == '__main__':
55 import atexit
56 lldb.SBDebugger.Initialize()
57 atexit.register(lambda: lldb.SBDebugger.Terminate())
58 unittest2.main()