diff options
author | David Robillard <d@drobilla.net> | 2021-01-13 19:34:11 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-03-08 23:23:05 -0500 |
commit | 2e25fe1e64f487fd91ff6f636bf3249b761ffcdc (patch) | |
tree | 73dc6d1731442acd26ea5b1f11de000c8dd31967 /test/meson.build | |
parent | e6abc21f9bde66d8f60078493354ba3713f9fcd8 (diff) | |
download | serd-2e25fe1e64f487fd91ff6f636bf3249b761ffcdc.tar.gz serd-2e25fe1e64f487fd91ff6f636bf3249b761ffcdc.tar.bz2 serd-2e25fe1e64f487fd91ff6f636bf3249b761ffcdc.zip |
Use a fixed-size reader stack
This improves performance, and makes the reader more suitable for embedded or
network-facing applications, at the cost of requiring the user to specify a
maximum stack size.
Diffstat (limited to 'test/meson.build')
-rw-r--r-- | test/meson.build | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/meson.build b/test/meson.build index a8c21e78..e45af26c 100644 --- a/test/meson.build +++ b/test/meson.build @@ -42,7 +42,7 @@ if get_option('utils') good_args = [ ['-v'], ['-h'], - ['-s', '<urn:eg:s> a <urn:eg:T> .'], + ['-k', '512', '-s', '<urn:eg:s> a <urn:eg:T> .'], ] foreach args : good_args @@ -53,6 +53,9 @@ if get_option('utils') ['-c'], ['-i', 'unknown'], ['-i'], + ['-k', '-1'], + ['-k', '9223372036854775807'], + ['-k', '1024junk'], ['-o', 'unknown'], ['-o'], ['-p'], |