summaryrefslogtreecommitdiff
path: root/Zend/tests/bug29896.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug29896.phpt')
-rwxr-xr-xZend/tests/bug29896.phpt28
1 files changed, 0 insertions, 28 deletions
diff --git a/Zend/tests/bug29896.phpt b/Zend/tests/bug29896.phpt
deleted file mode 100755
index 1e2eb0b067..0000000000
--- a/Zend/tests/bug29896.phpt
+++ /dev/null
@@ -1,28 +0,0 @@
---TEST--
-Bug #29896 (Backtrace argument list out of sync)
---FILE--
-<?php
-function userErrorHandler($num, $msg, $file, $line, $vars)
-{
- debug_print_backtrace();
-}
-
-$OldErrorHandler = set_error_handler("userErrorHandler");
-
-function GenerateError1($A1)
-{
- $a = $b;
-}
-
-function GenerateError2($A1)
-{
- GenerateError1("Test1");
-}
-
-GenerateError2("Test2");
-?>
---EXPECTF--
-#0 userErrorHandler(8, Undefined variable: b, %sbug29896.php, 11, Array ([A1] => Test1)) called at [%sbug29896.php:11]
-#1 GenerateError1(Test1) called at [%sbug29896.php:16]
-#2 GenerateError2(Test2) called at [%sbug29896.php:19]
-