mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2025-05-11 10:25:47 +02:00
wrap dragonfly_test with gdb inside a CI (#2050)
chore: run dragonfly_test with epoll under gdb Also, update helio that provide a stacktrace under musl libc (alpine linux). This version of helio updates absl version as well. Signed-off-by: Roman Gershman <roman@dragonflydb.io>
This commit is contained in:
parent
2cb7d30603
commit
d9cb7453fb
6 changed files with 22 additions and 16 deletions
|
@ -212,7 +212,7 @@ auto CmdEntryToMonitorFormat(std::string_view str) -> std::string {
|
|||
if (isprint(c)) {
|
||||
result += c;
|
||||
} else {
|
||||
absl::StrAppend(&result, "\\x", absl::Hex((unsigned char)c, absl::kZeroPad2));
|
||||
absl::StrAppendFormat(&result, "\\x%02x", c);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue