summaryrefslogtreecommitdiff
path: root/tests/lang/bug23279.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/bug23279.phpt')
-rw-r--r--tests/lang/bug23279.phpt16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/lang/bug23279.phpt b/tests/lang/bug23279.phpt
deleted file mode 100644
index 78d7850ff4..0000000000
--- a/tests/lang/bug23279.phpt
+++ /dev/null
@@ -1,16 +0,0 @@
---TEST--
-Bug #23279 (exception handler stops after first function call)
---FILE--
-<?php
-ob_start();
-set_exception_handler('redirect_on_error');
-echo "Hello World\n";
-throw new Exception;
-
-function redirect_on_error($e) {
- ob_end_clean();
- echo "Goodbye Cruel World\n";
-}
-?>
---EXPECT--
-Goodbye Cruel World