diff options
Diffstat (limited to 'Zend/tests/bug34065.phpt')
-rwxr-xr-x | Zend/tests/bug34065.phpt | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/Zend/tests/bug34065.phpt b/Zend/tests/bug34065.phpt deleted file mode 100755 index 9d76fca643..0000000000 --- a/Zend/tests/bug34065.phpt +++ /dev/null @@ -1,15 +0,0 @@ ---TEST-- -Bug #34065 (throw in foreach causes memory leaks) ---FILE-- -<?php -$data = file(__FILE__); -try { - foreach ($data as $line) { - throw new Exception("error"); - } -} catch (Exception $e) { - echo "ok\n"; -} -?> ---EXPECT-- -ok |