aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-08-08 14:24:59 -0400
committerDavid Robillard <d@drobilla.net>2022-01-28 21:57:07 -0500
commit5aa146e1ce58d295b5f45446bbbbdbb30c8e557d (patch)
treec8b49564b251bf2c3ff63bbfdc932986bea8d0b6 /scripts
parentbaa2e4e768f542953144cfa6ebe5713ecad389fc (diff)
downloadserd-5aa146e1ce58d295b5f45446bbbbdbb30c8e557d.tar.gz
serd-5aa146e1ce58d295b5f45446bbbbdbb30c8e557d.tar.bz2
serd-5aa146e1ce58d295b5f45446bbbbdbb30c8e557d.zip
Replace serdi -b and -e options with a block size option
This is more powerful, and reduces the number of command line options that almost nobody needs to care about.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/serd_bench.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/serd_bench.py b/scripts/serd_bench.py
index 018734c4..8a10dab0 100755
--- a/scripts/serd_bench.py
+++ b/scripts/serd_bench.py
@@ -226,8 +226,8 @@ example:
args = ap.parse_args(sys.argv[1:])
progs = [
- "serdi -b -i turtle -o turtle",
- "serdi -m -b -i turtle -o turtle",
+ "serdi -i turtle -o turtle",
+ "serdi -m -i turtle -o turtle",
] + args.run
min_n = int(args.max / 10)