diff options
author | Ilia K <ki.stfu@gmail.com> | 2015-04-15 14:11:52 +0000 |
---|---|---|
committer | Ilia K <ki.stfu@gmail.com> | 2015-04-15 14:11:52 +0000 |
commit | 3c886e6efcd3de03a2851f59d062176fe5c39e96 (patch) | |
tree | b800796b00b2f2c5ce2aab6dd48be5e2f3e8b4ea | |
parent | 26d3017b8e6268f2c15a096a37a3f0e16def77b2 (diff) | |
download | bcm5719-llvm-3c886e6efcd3de03a2851f59d062176fe5c39e96.tar.gz bcm5719-llvm-3c886e6efcd3de03a2851f59d062176fe5c39e96.zip |
Fix the ConvenienceVariablesCase tests after r234993
llvm-svn: 235010
-rw-r--r-- | lldb/test/functionalities/embedded_interpreter/TestConvenienceVariables.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lldb/test/functionalities/embedded_interpreter/TestConvenienceVariables.py b/lldb/test/functionalities/embedded_interpreter/TestConvenienceVariables.py index 978f29394db..e2dc87bac67 100644 --- a/lldb/test/functionalities/embedded_interpreter/TestConvenienceVariables.py +++ b/lldb/test/functionalities/embedded_interpreter/TestConvenienceVariables.py @@ -81,10 +81,7 @@ class ConvenienceVariablesCase(TestBase): child.expect_exact(python_prompt) # Linux outputs decimal tid and 'name' instead of 'queue' self.expect(child.before, exe=False, - patterns = ['thread #1: tid = (0x[0-9a-f]+|[0-9]+), 0x[0-9a-f]+ ' + - 'a\.out`main\(argc=1, argv=0x[0-9a-f]+\) \+ \d+ ' + - 'at main\.c:%d, (name|queue) = \'.+\', stop reason =' + - ' breakpoint 1\.1' % self.line]) + patterns = ['thread #1: tid = (0x[0-9a-f]+|[0-9]+), 0x[0-9a-f]+ a\.out`main\(argc=1, argv=0x[0-9a-f]+\) \+ \d+ at main\.c:%d, (name|queue) = \'.+\', stop reason = breakpoint 1\.1' % self.line]) child.sendline('print lldb.frame') child.expect_exact(python_prompt) |