diff options
Diffstat (limited to 'Zend/tests/bug34062.phpt')
-rwxr-xr-x | Zend/tests/bug34062.phpt | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/Zend/tests/bug34062.phpt b/Zend/tests/bug34062.phpt deleted file mode 100755 index bcb4ad8c64..0000000000 --- a/Zend/tests/bug34062.phpt +++ /dev/null @@ -1,24 +0,0 @@ ---TEST-- -Bug #34062 (Crash in catch block when many arguments are used) ---FILE-- -<?php -function f1() { throw new Exception; } -function f2() { echo "here\n"; } - -try { - // Currently it's the minimum required number of zeros - // If you remove one, it won't crash - max(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, f1()); -} catch (Exception $e) { - echo "(((\n"; - f2(0, 0, 0); // Won't crash if less than 3 zeros here - echo ")))\n"; -} -?> ---EXPECT-- -((( -here -))) - |