summary refs log tree commit diff
path: root/synmark/suites/__init__.py
diff options
context:
space:
mode:
authorAmber Brown <hawkowl@atleastfornow.net>2020-04-04 02:31:52 +1100
committerGitHub <noreply@github.com>2020-04-03 16:31:52 +0100
commit334bfdbc9088cfe2fbe43cfe1c349c27734bb341 (patch)
tree4bd395f26df1e3b59c4ef396ed82ef30605e8f74 /synmark/suites/__init__.py
parentConvert http.HTTPStatus objects to their int equivalent (#7188) (diff)
downloadsynapse-334bfdbc9088cfe2fbe43cfe1c349c27734bb341.tar.xz
Add some benchmarks for LruCache (#6446)
Diffstat (limited to 'synmark/suites/__init__.py')
-rw-r--r--synmark/suites/__init__.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/synmark/suites/__init__.py b/synmark/suites/__init__.py
index cfa3b0ba38..d8445fc3df 100644
--- a/synmark/suites/__init__.py
+++ b/synmark/suites/__init__.py
@@ -1,3 +1,9 @@
-from . import logging
+from . import logging, lrucache, lrucache_evict
 
-SUITES = [(logging, 1000), (logging, 10000), (logging, None)]
+SUITES = [
+    (logging, 1000),
+    (logging, 10000),
+    (logging, None),
+    (lrucache, None),
+    (lrucache_evict, None),
+]