summaryrefslogtreecommitdiff
path: root/Zend/tests/bug26697.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug26697.phpt')
-rwxr-xr-xZend/tests/bug26697.phpt24
1 files changed, 0 insertions, 24 deletions
diff --git a/Zend/tests/bug26697.phpt b/Zend/tests/bug26697.phpt
deleted file mode 100755
index 8266a23e34..0000000000
--- a/Zend/tests/bug26697.phpt
+++ /dev/null
@@ -1,24 +0,0 @@
---TEST--
-Bug #26697 (calling class_exists on a nonexistent class in __autoload results in segfault)
---SKIPIF--
-<?php if (function_exists('__autoload')) die('skip __autoload() declared in auto_prepend_file');?>
---FILE--
-<?php
-
-function __autoload($name)
-{
- echo __METHOD__ . "($name)\n";
- var_dump(class_exists('NotExistingClass'));
- echo __METHOD__ . "($name), done\n";
-}
-
-var_dump(class_exists('NotExistingClass'));
-
-?>
-===DONE===
---EXPECTF--
-__autoload(NotExistingClass)
-bool(false)
-__autoload(NotExistingClass), done
-bool(false)
-===DONE===