| Sean Callanan | 5207a34 | 2011-08-10 21:05:52 +0000 | [diff] [blame] | 1 | """ |
| 2 | Tests that C strings work as expected in expressions |
| 3 | """ |
| Jim Ingham | 63dfc72 | 2012-09-22 00:05:11 +0000 | [diff] [blame] | 4 | import lldb |
| Sean Callanan | 5207a34 | 2011-08-10 21:05:52 +0000 | [diff] [blame] | 5 | from lldbtest import * |
| Jim Ingham | 63dfc72 | 2012-09-22 00:05:11 +0000 | [diff] [blame] | 6 | import lldbutil |
| Sean Callanan | 5207a34 | 2011-08-10 21:05:52 +0000 | [diff] [blame] | 7 | |
| 8 | class CStringsTestCase(TestBase): |
| 9 | |
| 10 | mydir = os.path.join("lang", "c", "strings") |
| 11 | |
| 12 | @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin") |
| Johnny Chen | 24086bc | 2012-04-06 19:54:10 +0000 | [diff] [blame] | 13 | @dsym_test |
| Sean Callanan | 5207a34 | 2011-08-10 21:05:52 +0000 | [diff] [blame] | 14 | def test_with_dsym_and_run_command(self): |
| 15 | """Tests that C strings work as expected in expressions""" |
| 16 | self.buildDsym() |
| 17 | self.static_method_commands() |
| 18 | |
| Daniel Malea | 2bbf09e | 2012-11-27 21:33:41 +0000 | [diff] [blame] | 19 | @expectedFailureLinux # bugzilla 14437 |
| Johnny Chen | 24086bc | 2012-04-06 19:54:10 +0000 | [diff] [blame] | 20 | @dwarf_test |
| Sean Callanan | 5207a34 | 2011-08-10 21:05:52 +0000 | [diff] [blame] | 21 | def test_with_dwarf_and_run_command(self): |
| 22 | """Tests that C strings work as expected in expressions""" |
| 23 | self.buildDwarf() |
| 24 | self.static_method_commands() |
| 25 | |
| 26 | def setUp(self): |
| 27 | TestBase.setUp(self) |
| 28 | |
| 29 | def set_breakpoint(self, line): |
| Jim Ingham | 63dfc72 | 2012-09-22 00:05:11 +0000 | [diff] [blame] | 30 | lldbutil.run_break_set_by_file_and_line (self, "main.c", line, num_expected_locations=1, loc_exact=True) |
| Sean Callanan | 5207a34 | 2011-08-10 21:05:52 +0000 | [diff] [blame] | 31 | |
| 32 | def static_method_commands(self): |
| 33 | """Tests that C strings work as expected in expressions""" |
| 34 | self.runCmd("file a.out", CURRENT_EXECUTABLE_SET) |
| 35 | |
| 36 | self.set_breakpoint(line_number('main.c', '// breakpoint 1')) |
| 37 | |
| 38 | self.runCmd("process launch", RUN_SUCCEEDED) |
| 39 | |
| 40 | self.expect("expression -- a[2]", |
| Johnny Chen | e1cdc92 | 2011-08-16 19:59:22 +0000 | [diff] [blame] | 41 | patterns = ["\((const )?char\) \$0 = 'c'"]) |
| Sean Callanan | 5207a34 | 2011-08-10 21:05:52 +0000 | [diff] [blame] | 42 | |
| 43 | self.expect("expression -- z[2]", |
| 44 | startstr = "(const char) $1 = 'x'") |
| 45 | |
| 46 | self.expect("expression -- (int)strlen(\"hello\")", |
| 47 | startstr = "(int) $2 = 5") |
| 48 | |
| 49 | self.expect("expression -- \"world\"[2]", |
| 50 | startstr = "(const char) $3 = 'r'") |
| 51 | |
| 52 | self.expect("expression -- \"\"[0]", |
| 53 | startstr = "(const char) $4 = '\\0'") |
| 54 | |
| Enrico Granata | 9128ee2 | 2011-09-06 19:20:51 +0000 | [diff] [blame] | 55 | self.expect("p \"hello\"", |
| Enrico Granata | b576bba | 2013-01-09 20:12:53 +0000 | [diff] [blame^] | 56 | substrs = ['[6]) $', 'hello', |
| 57 | '[0] = \'h\'', |
| 58 | '[5] = \'\\0\'']) |
| Enrico Granata | 9128ee2 | 2011-09-06 19:20:51 +0000 | [diff] [blame] | 59 | |
| 60 | self.expect("p (char*)\"hello\"", |
| 61 | substrs = ['(char *) $', ' = 0x', |
| 62 | 'hello']) |
| 63 | |
| Sean Callanan | 5207a34 | 2011-08-10 21:05:52 +0000 | [diff] [blame] | 64 | if __name__ == '__main__': |
| 65 | import atexit |
| 66 | lldb.SBDebugger.Initialize() |
| 67 | atexit.register(lambda: lldb.SBDebugger.Terminate()) |
| 68 | unittest2.main() |