php-src/ext/db/tests/001.phpt
Hartmut Holzgraefe 86c0d81253 have you ever tried to run the regression tests with error_reporting=E_ALL ?
now it will run smoothly without all theese 'undefined ...' warnings
2000-10-23 07:40:05 +00:00

14 lines
195 B
PHP

--TEST--
DBM File Creation Test
--SKIPIF--
<?php if (!extension_loaded("db")) print "skip"; ?>
--POST--
--GET--
--FILE--
<?php
dbmopen("./test.dbm","n");
dbmclose("./test.dbm");
?>
--EXPECT--