aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Leach <mike.leach@linaro.org>2024-03-28 13:58:04 +0000
committerMike Leach <mike.leach@linaro.org>2024-03-28 17:05:53 +0000
commitb957577e71bf55b3e253402ca3e6745f3a61a555 (patch)
treecc19d77971173eaba240f45ada4977e961aa7af8
parentdca84a74a0d5d453db92188d5cdaf0e90a3f33d3 (diff)
downloadOpenCSD-b957577e71bf55b3e253402ca3e6745f3a61a555.tar.gz
tests: Fix typo in trc_pkt_lister help output
Fix missing ')' When listing options, put dev only ones in separate section. Reported-by: Wookey <wookey@wookware.org> Signed-off-by: Mike Leach <mike.leach@linaro.org>
-rw-r--r--decoder/tests/source/trc_pkt_lister.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/decoder/tests/source/trc_pkt_lister.cpp b/decoder/tests/source/trc_pkt_lister.cpp
index ae8c26c..a207605 100644
--- a/decoder/tests/source/trc_pkt_lister.cpp
+++ b/decoder/tests/source/trc_pkt_lister.cpp
@@ -198,14 +198,15 @@ void print_help()
oss << "-dstream_format Input is DSTREAM framed.\n";
oss << "-tpiu Input from TPIU - sync by FSYNC.\n";
oss << "-tpiu_hsync Input from TPIU - sync by FSYNC and HSYNC.\n";
- oss << "-decode Full decode of the packets from the trace snapshot (default is to list undecoded packets only\n";
+ oss << "-decode Full decode of the packets from the trace snapshot (default is to list undecoded packets only)\n";
oss << "-decode_only Does not list the undecoded packets, just the trace decode.\n";
oss << "-o_raw_packed Output raw packed trace frames\n";
oss << "-o_raw_unpacked Output raw unpacked trace data per ID\n";
- oss << "-test_waits <N> Force wait from packet printer for N packets - test the wait/flush mechanisms for the decoder\n";
oss << "-src_addr_n ETE protocol: Split source address ranges on N atoms\n";
oss << "-stats Output packet processing statistics (if available).\n";
+ oss << "\nDevelopment:\nOptions used during develop and test of the library\n\n";
oss << "-profile Mute logging output while profiling library performance\n";
+ oss << "-test_waits <N> Force wait from packet printer for N packets - test the wait/flush mechanisms for the decoder\n";
oss << "-macc_cache_disable Switch off caching on memory accessor\n";
oss << "-macc_cache_p_size Set size of caching pages\n";
oss << "-macc_cache_p_num Set number of caching pages\n";