mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-19 18:45:52 +00:00
Core: * Test buffer_cat iterator move members HTTP: * Fixed yield / resume in writer * Fixed message serialization with chunked encoding * Test yield / resume in writer * Test all conditional branches during message serialization * Test chunked encoding * Increase coverage on parse_error * Add parse_error::general WebSocket: * Add error::general * Increase coverage in error
10 lines
184 B
Bash
Executable File
10 lines
184 B
Bash
Executable File
#!/bin/bash -u
|
|
set -e
|
|
gdb --silent \
|
|
--batch \
|
|
--return-child-result \
|
|
-ex="set print thread-events off" \
|
|
-ex=run \
|
|
-ex="thread apply all bt full" \
|
|
--args $@
|