diff options
Diffstat (limited to 'ext/dba/tests/dba009.phpt')
-rwxr-xr-x | ext/dba/tests/dba009.phpt | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/ext/dba/tests/dba009.phpt b/ext/dba/tests/dba009.phpt index b4d8308e8..698657b2a 100755 --- a/ext/dba/tests/dba009.phpt +++ b/ext/dba/tests/dba009.phpt @@ -2,12 +2,12 @@ DBA dba_popen Test --SKIPIF-- <?php - require_once dirname(__FILE__) .'/skipif.inc'; + require_once(dirname(__FILE__) .'/skipif.inc'); print("info $HND handler used"); ?> --FILE-- <?php - require_once dirname(__FILE__) .'/test.inc'; + require_once(dirname(__FILE__) .'/test.inc'); echo "database handler: $handler\n"; if (($db=dba_popen($db_file, "n", $handler))!==FALSE) { echo "Opened\n"; @@ -24,6 +24,10 @@ DBA dba_popen Test echo dba_fetch("a", $db)."\n"; } ?> +--CLEAN-- +<?php + require(dirname(__FILE__) .'/clean.inc'); +?> --EXPECTF-- database handler: %s Opened |