diff options
Diffstat (limited to 'lldb/test')
-rw-r--r-- | lldb/test/alias_tests/TestAliases.py | 4 | ||||
-rw-r--r-- | lldb/test/expression_command/test/TestExprs.py | 38 |
2 files changed, 21 insertions, 21 deletions
diff --git a/lldb/test/alias_tests/TestAliases.py b/lldb/test/alias_tests/TestAliases.py index e30fe15a104..ae79875ac41 100644 --- a/lldb/test/alias_tests/TestAliases.py +++ b/lldb/test/alias_tests/TestAliases.py @@ -94,8 +94,8 @@ class AliasTestCase(TestBase): self.expect ("run", patterns = [ "Process .* launched: .*a.out" ]) - self.expect (r'''expression printf("\x68\x65\x6c\x6c\x6f\n")''', - substrs = [ "(unsigned long) $", + self.expect (r'''expression (int) printf("\x68\x65\x6c\x6c\x6f\n")''', + substrs = [ "(int) $", "= 6" ]) self.expect ("hello", diff --git a/lldb/test/expression_command/test/TestExprs.py b/lldb/test/expression_command/test/TestExprs.py index b3dc440c2b0..9c056c59e21 100644 --- a/lldb/test/expression_command/test/TestExprs.py +++ b/lldb/test/expression_command/test/TestExprs.py @@ -182,36 +182,36 @@ class BasicExprCommandsTestCase(TestBase): substrs = ['(char) $', "'a'"]) - # runCmd: expression printf ("\n\n\tHello there!\n") - # output: (unsigned long) $1 = 16 - self.expect(r'''expression printf ("\n\n\tHello there!\n")''', - substrs = ['(unsigned long) $', + # runCmd: expression (int) printf ("\n\n\tHello there!\n") + # output: (int) $1 = 16 + self.expect(r'''expression (int) printf ("\n\n\tHello there!\n")''', + substrs = ['(int) $', '16']) - # runCmd: expression printf("\t\x68\n") - # output: (unsigned long) $2 = 3 - self.expect(r'''expression printf("\t\x68\n")''', - substrs = ['(unsigned long) $', + # runCmd: expression (int) printf("\t\x68\n") + # output: (int) $2 = 3 + self.expect(r'''expression (int) printf("\t\x68\n")''', + substrs = ['(int) $', '3']) - # runCmd: expression printf("\"\n") - # output: (unsigned long) $3 = 2 - self.expect(r'''expression printf("\"\n")''', - substrs = ['(unsigned long) $', + # runCmd: expression (int) printf("\"\n") + # output: (int) $3 = 2 + self.expect(r'''expression (int) printf("\"\n")''', + substrs = ['(int) $', '2']) - # runCmd: expression printf("'\n") - # output: (unsigned long) $4 = 2 - self.expect(r'''expression printf("'\n")''', - substrs = ['(unsigned long) $', + # runCmd: expression (int) printf("'\n") + # output: (int) $4 = 2 + self.expect(r'''expression (int) printf("'\n")''', + substrs = ['(int) $', '2']) - # runCmd: command alias print_hi expression printf ("\n\tHi!\n") + # runCmd: command alias print_hi expression (int) printf ("\n\tHi!\n") # output: - self.runCmd(r'''command alias print_hi expression printf ("\n\tHi!\n")''') + self.runCmd(r'''command alias print_hi expression (int) printf ("\n\tHi!\n")''') # This fails currently. self.expect('print_hi', - substrs = ['(unsigned long) $', + substrs = ['(int) $', '6']) |