summaryrefslogtreecommitdiff
path: root/ext/wddx/tests/bug27287.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/wddx/tests/bug27287.phpt')
-rw-r--r--ext/wddx/tests/bug27287.phpt23
1 files changed, 0 insertions, 23 deletions
diff --git a/ext/wddx/tests/bug27287.phpt b/ext/wddx/tests/bug27287.phpt
deleted file mode 100644
index 823aa10f3d..0000000000
--- a/ext/wddx/tests/bug27287.phpt
+++ /dev/null
@@ -1,23 +0,0 @@
---TEST--
-Bug #27287 (segfault with deserializing object data)
---SKIPIF--
-<?php if (!extension_loaded("wddx")) print "skip"; ?>
---FILE--
-<?php
-
- class foo {
- }
- $foo = new foo();
- $foo->abc = 'def';
-
- $string = wddx_serialize_value($foo);
- $bar = wddx_deserialize($string);
-
- echo "OK\n";
-
-?>
---EXPECTF--
-Deprecated: Function wddx_serialize_value() is deprecated in %s on line %d
-
-Deprecated: Function wddx_deserialize() is deprecated in %s on line %d
-OK