summaryrefslogtreecommitdiff
path: root/ext/dba/tests
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2002-11-06 11:59:14 +0000
committerMarcus Boerger <helly@php.net>2002-11-06 11:59:14 +0000
commitcaa194d47edb40e5a44a09ffcdcad4ce42cdc50e (patch)
tree8a3a9f9c9ef022b35a7db1cc0aefb4ba096725ac /ext/dba/tests
parentc7b7cf17c2656d8ab169aa66291005a0b6b2aa08 (diff)
downloadphp-git-caa194d47edb40e5a44a09ffcdcad4ce42cdc50e.tar.gz
-convert from dos to unix file
-disallow cdb_make
Diffstat (limited to 'ext/dba/tests')
-rw-r--r--ext/dba/tests/skipif.inc5
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/dba/tests/skipif.inc b/ext/dba/tests/skipif.inc
index 3dc7157fe0..f4855b708b 100644
--- a/ext/dba/tests/skipif.inc
+++ b/ext/dba/tests/skipif.inc
@@ -6,7 +6,10 @@
$handler = dba_handlers();
if ($handler[0]=='cdb') {
if (count($handler)==1) {
- die('skip CDB currently supports only reading ');
+ die('skip CDB currently supports only reading');
+ }
+ if ($handler[1]=='cdb_make' && count($handler)==2) {
+ die('skip CDB currently supports only reading and creating');
}
}
?>