mirror of
https://github.com/php/php-src.git
synced 2026-04-17 04:51:03 +02:00
- dba008.phpt never runs anyway, no need to keep it - bug75357.phpt has a branch that is never hit, which should not change the bug behavior in anyway - bug55371.phpt added a simple 'done' test to not let the EXPECT section be empty
14 lines
203 B
PHP
14 lines
203 B
PHP
--TEST--
|
|
Bug #55371 (get_magic_quotes_gpc() and get_magic_quotes_runtime() throw deprecated warning)
|
|
--FILE--
|
|
<?php
|
|
|
|
get_magic_quotes_gpc();
|
|
get_magic_quotes_runtime();
|
|
|
|
echo 'done';
|
|
|
|
?>
|
|
--EXPECT--
|
|
done
|