From 983e0da4332a115ae8f3cd8789cb9498bd722534 Mon Sep 17 00:00:00 2001 From: drebs Date: Thu, 13 Jul 2017 11:27:57 -0300 Subject: [benchmarks] change 20_500k to 10_1000k --- testing/tests/benchmarks/test_sqlcipher.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'testing/tests/benchmarks/test_sqlcipher.py') diff --git a/testing/tests/benchmarks/test_sqlcipher.py b/testing/tests/benchmarks/test_sqlcipher.py index e9a48d05..9dd21bea 100644 --- a/testing/tests/benchmarks/test_sqlcipher.py +++ b/testing/tests/benchmarks/test_sqlcipher.py @@ -32,10 +32,10 @@ def build_test_sqlcipher_create(amount, size): return test -test_async_create_20_500k = build_test_sqlcipher_async_create(20, 500 * 1000) +test_async_create_10_1000k = build_test_sqlcipher_async_create(10, 1000 * 1000) test_async_create_100_100k = build_test_sqlcipher_async_create(100, 100 * 1000) test_async_create_1000_10k = build_test_sqlcipher_async_create(1000, 10 * 1000) # synchronous -test_create_20_500k = build_test_sqlcipher_create(20, 500 * 1000) +test_create_10_1000k = build_test_sqlcipher_create(10, 1000 * 1000) test_create_100_100k = build_test_sqlcipher_create(100, 100 * 1000) test_create_1000_10k = build_test_sqlcipher_create(1000, 10 * 1000) -- cgit v1.2.3