summaryrefslogtreecommitdiff
path: root/ext/wddx/tests/bug37587.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/wddx/tests/bug37587.phpt')
-rw-r--r--ext/wddx/tests/bug37587.phpt35
1 files changed, 0 insertions, 35 deletions
diff --git a/ext/wddx/tests/bug37587.phpt b/ext/wddx/tests/bug37587.phpt
deleted file mode 100644
index e91e451238..0000000000
--- a/ext/wddx/tests/bug37587.phpt
+++ /dev/null
@@ -1,35 +0,0 @@
---TEST--
-Bug #37587 (var without attribute causes segfault)
---SKIPIF--
-<?php if (!extension_loaded("wddx")) print "skip"; ?>
---FILE--
-<?php
-
-var_dump(wddx_deserialize(<<<EOF
-<wddxPacket version='1.0'>
-<header/>
-<data>
- <array length='1'>
- <var>
- <struct>
- <var name='test'><string>Hello World</string></var>
- </struct>
- </var>
- </array>
-</data>
-</wddxPacket>
-EOF
-));
-
-?>
-===DONE===
---EXPECTF--
-Deprecated: Function wddx_deserialize() is deprecated in %s on line %d
-array(1) {
- [0]=>
- array(1) {
- ["test"]=>
- string(11) "Hello World"
- }
-}
-===DONE===