summary refs log tree commit diff
path: root/synmark/suites/__init__.py
blob: d8445fc3df758a234b89b043c4caea716517e7ab (plain) (blame)
1
2
3
4
5
6
7
8
9
from . import logging, lrucache, lrucache_evict

SUITES = [
    (logging, 1000),
    (logging, 10000),
    (logging, None),
    (lrucache, None),
    (lrucache_evict, None),
]