summaryrefslogtreecommitdiff
path: root/Zend/tests/error_reporting10.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/error_reporting10.phpt')
-rw-r--r--Zend/tests/error_reporting10.phpt35
1 files changed, 0 insertions, 35 deletions
diff --git a/Zend/tests/error_reporting10.phpt b/Zend/tests/error_reporting10.phpt
deleted file mode 100644
index a2c13e4ad8..0000000000
--- a/Zend/tests/error_reporting10.phpt
+++ /dev/null
@@ -1,35 +0,0 @@
---TEST--
-testing @ and error_reporting - 10
---FILE--
-<?php
-
-error_reporting(E_ALL);
-
-function make_exception()
-{
- @$blah;
- str_replace();
- error_reporting(0);
- throw new Exception();
-}
-
-try {
- @make_exception();
-} catch (Exception $e) {}
-
-var_dump(error_reporting());
-
-error_reporting(E_ALL&~E_NOTICE);
-
-try {
- @make_exception();
-} catch (Exception $e) {}
-
-var_dump(error_reporting());
-
-echo "Done\n";
-?>
---EXPECTF--
-int(2047)
-int(2039)
-Done