summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordrebs <drebs@leap.se>2017-07-13 11:27:57 -0300
committerdrebs <drebs@leap.se>2017-07-13 11:27:57 -0300
commit983e0da4332a115ae8f3cd8789cb9498bd722534 (patch)
treee180f644e4fac0529386f893d917f335eacebd74
parent213456887a794cc7aec5924f65dc277d8b4627ff (diff)
[benchmarks] change 20_500k to 10_1000k
-rw-r--r--testing/tests/benchmarks/test_sqlcipher.py4
-rw-r--r--testing/tests/benchmarks/test_sync.py4
2 files changed, 4 insertions, 4 deletions
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)
diff --git a/testing/tests/benchmarks/test_sync.py b/testing/tests/benchmarks/test_sync.py
index 04566678..4a275040 100644
--- a/testing/tests/benchmarks/test_sync.py
+++ b/testing/tests/benchmarks/test_sync.py
@@ -32,7 +32,7 @@ def create_upload(uploads, size):
# ATTENTION: update the documentation in ../docs/benchmarks.rst if you change
# the number of docs or the doc sizes for the tests below.
-test_upload_20_500k = create_upload(20, 500 * 1000)
+test_upload_10_1000k = create_upload(10, 1000 * 1000)
test_upload_100_100k = create_upload(100, 100 * 1000)
test_upload_1000_10k = create_upload(1000, 10 * 1000)
@@ -67,7 +67,7 @@ def create_download(downloads, size):
# ATTENTION: update the documentation in ../docs/benchmarks.rst if you change
# the number of docs or the doc sizes for the tests below.
-test_download_20_500k = create_download(20, 500 * 1000)
+test_download_10_1000k = create_download(10, 1000 * 1000)
test_download_100_100k = create_download(100, 100 * 1000)
test_download_1000_10k = create_download(1000, 10 * 1000)