summary refs log tree commit diff
path: root/synmark/suites/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'synmark/suites/__init__.py')
-rw-r--r--synmark/suites/__init__.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/synmark/suites/__init__.py b/synmark/suites/__init__.py
new file mode 100644
index 0000000000..d8445fc3df
--- /dev/null
+++ b/synmark/suites/__init__.py
@@ -0,0 +1,9 @@
+from . import logging, lrucache, lrucache_evict
+
+SUITES = [
+    (logging, 1000),
+    (logging, 10000),
+    (logging, None),
+    (lrucache, None),
+    (lrucache_evict, None),
+]