Caused a failure because it showed up as __printf.
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
test/tools/lldb-mi/breakpoint/TestMiBreak.py | ||
---|---|---|
34 ↗ | (On Diff #23881) | update this patch after r235189 and use the following: func=\".+?\" |
Comment Actions
To match the shortest string. For example, if we have the following input:
^done,bkpt={someval}
.=breakpoint-modified,bkpt={someval}
then the "\^done,bkpt=\{.*\}" will match for (see bold text):
^done,bkpt={someval}
.=breakpoint-modified,bkpt={someval}
but the "\^done,bkpt=\{.*?\}" will match for:
^done,bkpt={someval}
.=breakpoint-modified,bkpt={someval}