Testsuite: create test db on-the-fliy for LMDB testcase
[users/jgh/exim.git] / test / aux-fixed / 2800.lmdb-mkdb-dump.py
diff --git a/test/aux-fixed/2800.lmdb-mkdb-dump.py b/test/aux-fixed/2800.lmdb-mkdb-dump.py
deleted file mode 100644 (file)
index 3de6ba1..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/env python
-import os
-import lmdb
-
-if os.path.exists('2800.mdb'):
-    os.unlink('2800.mdb')
-
-env = lmdb.open('2800.mdb', subdir=False);
-with env.begin(write=True) as txn:
-   txn.put('first', 'data for first')
-   txn.put('second', 'A=1 B=2')
-   txn.put('third', 'A1:B2:C3')
-   cursor = txn.cursor()
-   for key, value in cursor:
-       print key, "=>", value