Skip to content

Commit

Permalink
dsui: Remove error msg on success (#3913)
Browse files Browse the repository at this point in the history
  • Loading branch information
kazarmy authored and ret2libc committed Oct 13, 2023
1 parent c485824 commit f9cf7fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion librz/core/cmd/cmd_debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,6 @@ static bool step_until_inst(RzCore *core, const char *instr, bool regex) {
}
} else {
if (strstr(buf_asm, instr)) {
RZ_LOG_ERROR("core: esil: stop.\n");
break;
}
}
Expand Down
5 changes: 4 additions & 1 deletion test/db/archos/linux-x64/dbg_trace1
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CMDS=<<EOF
dcu main
dbt
echo ----
ds 2 # Should be dsui call; ds
dsui call; ds
dbt~[6-] # dbtt here would be nice
EOF
REGEXP_FILTER_OUT=(loc\.[^_]\S*.|main\S*.|entry0\+\d+\s+|-+\n)
Expand All @@ -35,4 +35,7 @@ loc.func_0
main+8
entry0+41
EOF
REGEXP_FILTER_ERR=ERROR.*\n
EXPECT_ERR=<<EOF
EOF
RUN

0 comments on commit f9cf7fa

Please sign in to comment.