summaryrefslogtreecommitdiff
path: root/Zend/tests/bug32596.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug32596.phpt')
-rwxr-xr-xZend/tests/bug32596.phpt27
1 files changed, 0 insertions, 27 deletions
diff --git a/Zend/tests/bug32596.phpt b/Zend/tests/bug32596.phpt
deleted file mode 100755
index 2dd0cfe9f0..0000000000
--- a/Zend/tests/bug32596.phpt
+++ /dev/null
@@ -1,27 +0,0 @@
---TEST--
-Bug #32596 (Segfault/Memory Leak by getClass (etc) in __destruct)
---FILE--
-<?php
-class BUG {
- public $error = "please fix this thing, it wasted a nice part of my life!\n";
- static function instance() {return new BUG();}
-
- function __destruct()
- {
- $c=get_class($this); unset($c);
- echo get_class($this) ."\n";
- if(defined('DEBUG_'.__CLASS__)){}
- $c=get_class($this); //memory leak only
- echo $this->error;
- }
-}
-
-
-BUG::instance()->error;
-echo "this is still executed\n";
-?>
---EXPECT--
-BUG
-please fix this thing, it wasted a nice part of my life!
-this is still executed
-