diff options
author | David Robillard <d@drobilla.net> | 2022-03-14 12:41:36 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-03-14 12:41:36 -0400 |
commit | 5314f0d642cc17b4af772116a098999da113bf37 (patch) | |
tree | e03b6862247a8d4dd230f46211b6c94f91345e9c /test | |
parent | 738b99a66afadbafde3f643d03c78b64e3b8506e (diff) | |
download | zix-5314f0d642cc17b4af772116a098999da113bf37.tar.gz zix-5314f0d642cc17b4af772116a098999da113bf37.tar.bz2 zix-5314f0d642cc17b4af772116a098999da113bf37.zip |
Reduce default BTree test time
Diffstat (limited to 'test')
-rw-r--r-- | test/btree_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/btree_test.c b/test/btree_test.c index aa8cb69..fb6b769 100644 --- a/test/btree_test.c +++ b/test/btree_test.c @@ -626,7 +626,7 @@ main(int argc, char** argv) test_failed_alloc(); const unsigned n_tests = 3u; - const size_t n_elems = (argc > 1) ? strtoul(argv[1], NULL, 10) : 524288u; + const size_t n_elems = (argc > 1) ? strtoul(argv[1], NULL, 10) : 131072u; printf("Running %u tests with %" PRIuPTR " elements", n_tests, n_elems); for (unsigned i = 0; i < n_tests; ++i) { |