diff options
Diffstat (limited to 'ext/dba/tests/dba008.phpt')
-rw-r--r-- | ext/dba/tests/dba008.phpt | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/ext/dba/tests/dba008.phpt b/ext/dba/tests/dba008.phpt index 8fde8ff3f..f7015d921 100644 --- a/ext/dba/tests/dba008.phpt +++ b/ext/dba/tests/dba008.phpt @@ -2,12 +2,13 @@ DBA magic_quotes_runtime Test --SKIPIF-- <?php - require_once dirname(__FILE__) .'/skipif.inc'; + die('skip, magic_quotes removed'); + require_once(dirname(__FILE__) .'/skipif.inc'); die("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_file=dba_open($db_file, "n", $handler))!==FALSE) { ini_set('magic_quotes_runtime', 0); @@ -24,6 +25,10 @@ DBA magic_quotes_runtime Test echo "Error creating database\n"; } ?> +--CLEAN-- +<?php + require(dirname(__FILE__) .'/clean.inc'); +?> --EXPECTF-- database handler: %s string(1) """ |