summaryrefslogtreecommitdiff
path: root/tests/lang/bug22690.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/bug22690.phpt')
-rw-r--r--tests/lang/bug22690.phpt12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/lang/bug22690.phpt b/tests/lang/bug22690.phpt
deleted file mode 100644
index 6aed5be6e9..0000000000
--- a/tests/lang/bug22690.phpt
+++ /dev/null
@@ -1,12 +0,0 @@
---TEST--
-Bug #22690 (ob_start() is broken with create_function() callbacks)
---FILE--
-<?php
- $foo = create_function('$s', 'return strtoupper($s);');
- ob_start($foo);
- echo $foo("bar\n");
-?>
-bar
---EXPECT--
-BAR
-BAR