summary refs log tree commit diff stats
path: root/test/__init__.py
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-04-29 16:14:50 +0200
committerhut <hut@lavabit.com>2010-04-29 19:23:37 +0200
commitd76fd5b7666cd1e7b9ff4eb51a822e1ab41fac28 (patch)
treef6d53c1c9be06fb7320f43bed0ee4539aa74583f /test/__init__.py
parentbb5bfad4426eac02d0d855dd7f6ccf8ed5cc84f9 (diff)
downloadranger-d76fd5b7666cd1e7b9ff4eb51a822e1ab41fac28.tar.gz
Separated benchmark from testcase
Diffstat (limited to 'test/__init__.py')
-rw-r--r--test/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/__init__.py b/test/__init__.py
index c2f9bde2..e5f8a300 100644
--- a/test/__init__.py
+++ b/test/__init__.py
@@ -17,7 +17,7 @@ import os, sys
 
 __all__ = [ x[0:x.index('.')] \
 		for x in os.listdir(os.path.dirname(__file__)) \
-		if x.startswith('tc_') ]
+		if x.startswith('tc_') or x.startswith('bm_')]
 
 def init():
 	sys.path.append(os.path.abspath(os.path.join(sys.path[0], '..')))