summary refs log tree commit diff stats
path: root/test/all_benchmarks.py
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-08-29 19:16:57 +0200
committerhut <hut@lavabit.com>2010-08-29 19:16:57 +0200
commitec823be00aa7175ebcb836a240a20f6389159c2e (patch)
tree24fe7386e630acf7ccf7903c09f252b434aee18a /test/all_benchmarks.py
parentfd29d7e6bb22d6176717ac5dc9e3c8f88009732b (diff)
downloadranger-ec823be00aa7175ebcb836a240a20f6389159c2e.tar.gz
Removed symlink in test/
Diffstat (limited to 'test/all_benchmarks.py')
-rwxr-xr-xtest/all_benchmarks.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/test/all_benchmarks.py b/test/all_benchmarks.py
index 20f11ad8..a3612701 100755
--- a/test/all_benchmarks.py
+++ b/test/all_benchmarks.py
@@ -19,9 +19,13 @@ Run all the benchmarks inside this directory.
 Usage: ./all_benchmarks.py [count] [regexp-filters...]
 """
 
-import os
-import re
+import os.path
 import sys
+rangerpath = os.path.join(os.path.dirname(__file__), '..')
+if sys.path[1] != rangerpath:
+	sys.path[1:1] = [rangerpath]
+
+import re
 import time
 
 if __name__ == '__main__':