summaryrefslogtreecommitdiff
path: root/ext/dba/tests/test.inc
diff options
context:
space:
mode:
Diffstat (limited to 'ext/dba/tests/test.inc')
-rw-r--r--ext/dba/tests/test.inc17
1 files changed, 0 insertions, 17 deletions
diff --git a/ext/dba/tests/test.inc b/ext/dba/tests/test.inc
deleted file mode 100644
index 402096dbe9..0000000000
--- a/ext/dba/tests/test.inc
+++ /dev/null
@@ -1,17 +0,0 @@
-<?php
- $db_filename = $db_file = dirname(__FILE__).'/test0.dbm';
- $handler = dba_handlers();
- if (in_array('flatfile', $handler)) {
- $handler = 'flatfile';
- } elseif ($handler[0]=='cdb') { // CDB currently supports only reading
- if (count($handler)==1) {
- die('CDB currently supports only reading ');
- }
- $handler = $handler[1];
- } else {
- $handler = $handler[0];
- }
- $lock_flag = 'l';
- @unlink($db_filename);
- @unlink($db_filename.'.lck');
-?>