Add tests for configurable report range, update man page

Signed-off-by: Thomas Lauf <thomas.lauf@tngtech.com>
This commit is contained in:
Thomas Lauf 2022-12-30 14:26:48 +01:00
parent c8eee25f5b
commit 55ad661e0d
3 changed files with 70 additions and 6 deletions

11
test/test_extensions/debug.py Executable file
View file

@ -0,0 +1,11 @@
#!/usr/bin/env python3
import sys
for line in sys.stdin:
# skip configuration
if line == "\n":
break
for line in sys.stdin:
print(line.strip())