]> granicus.if.org Git - php/commitdiff
removed test for unrelated bug #68946
authorChristoph M. Becker <cmbecker69@gmx.de>
Wed, 27 May 2015 00:34:44 +0000 (02:34 +0200)
committerAnatol Belski <ab@php.net>
Fri, 29 May 2015 18:43:40 +0000 (20:43 +0200)
ext/simplexml/tests/bug68946.phpt [deleted file]

diff --git a/ext/simplexml/tests/bug68946.phpt b/ext/simplexml/tests/bug68946.phpt
deleted file mode 100644 (file)
index bd6c11b..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
---TEST--
-Bug #68946 - simplexml_load_string() result depends on formatting of xml string
---SKIPIF--
-<?php
-if (!extension_loaded("simplexml")) die("skip SimpleXML not available");
-?>
---FILE--
-<?php
-$sxe = simplexml_load_string("<?BrightCloud version=bcap/1.1?><bcap><seqnum>1</seqnum></bcap>");
-var_dump($sxe == false);
-$sxe = simplexml_load_string("<?BrightCloud version=bcap/1.1?><bcap> <seqnum>1</seqnum></bcap>");
-var_dump($sxe == false);
-?>
---EXPECT--
-bool(false)
-bool(false)