summaryrefslogtreecommitdiff
path: root/test/test_bdboptimized.py
diff options
context:
space:
mode:
authorGunnar Aastrand Grimnes <gromgull@gmail.com>2011-08-20 13:12:34 +0200
committerGunnar Aastrand Grimnes <gromgull@gmail.com>2011-08-20 13:12:34 +0200
commitb5c8965fa973e609bd6d971f28d74c2d09ddf09e (patch)
treeab54cb13c3bb8011ad34e757dfcfa21e7b369f25 /test/test_bdboptimized.py
parentf430629e84f7ebb197c44646442c841272bbf15e (diff)
downloadrdflib-bdbOptimized.tar.gz
restarted BDBOptimized store - unfortunately, benchmarks show that it is much slower than the normal sleepcat store in every way - so I guess we never merge this :)bdbOptimized
Diffstat (limited to 'test/test_bdboptimized.py')
-rw-r--r--test/test_bdboptimized.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/test_bdboptimized.py b/test/test_bdboptimized.py
new file mode 100644
index 00000000..2f01dc00
--- /dev/null
+++ b/test/test_bdboptimized.py
@@ -0,0 +1,17 @@
+import logging
+
+_logger = logging.getLogger(__name__)
+
+from test import test_graph
+from test import test_context
+
+
+class BDBOptimizedGraphTestCase(test_graph.GraphTestCase):
+ store_name = "BDBOptimized"
+ non_core = True
+ bsddb = True
+
+class BDBOptimizedStoreTestCase(test_context.ContextTestCase):
+ store = "BDBOptimized"
+ non_core = True
+ bsddb = True