summaryrefslogtreecommitdiff
path: root/ext/simplexml
diff options
context:
space:
mode:
authorPeter Kokot <peterkokot@gmail.com>2018-09-26 12:54:20 +0200
committerPeter Kokot <peterkokot@gmail.com>2018-09-26 12:54:20 +0200
commitc951836721e87848df256c6196f94f4d82acbd73 (patch)
tree689b71acd82e16a0460c1224ec71996fcc5163fe /ext/simplexml
parentab1ce6058a4a3ee9aa9785b97046393dabad66ca (diff)
downloadphp-git-c951836721e87848df256c6196f94f4d82acbd73.tar.gz
Remove unused files
- ext/simplexml/tests/bug25756_1.xml - ext/simplexml/tests/bug25756_2.xml - ext/simplexml/tests/bug25756.xsd Added via 503d74aa29901ccf6419b9429febc59772a24ffd and then removed via 9e29f17493284dee81d2842f6067b24fba9538a5 - ext/mysqli/tests/cacert.pem - ext/mysqli/tests/client-cert.pem - ext/mysqli/tests/client-key.pem Added via e9f9f66f2ecc9cdd320081baa2151aa636dbaab1 and then removed via 6d51b7b2e3468601acdaaf9041c9131b5aa47f98 - ext/gd/tests/simpletext私はガラスを食べられます.jpg Added via 3d3f11ede4cc7c83d64cc5edaae7c29ce9c6986f and never used - ext/gd/tests/src.png Added via cc938b5df026ec0e9127e82ae88d39fd89592388 and never used - ext/zlib/tests/gzgetss.test Added via d536ecac5ca34f351f219b880c7983b682c99ec0 as a file content of the ext/zlib/tests/gzgetss.gzbut but never used in tests directly. Removed for better clarity of zlib tests - ext/soap/tests/interop/Round3/GroupD/round3_groupD_import2_absolute.wsdl - ext/soap/tests/interop/Round4/GroupG/round4_groupG_mimerpc.wsdl - ext/soap/tests/interop/Round4/GroupG/round4_groupG_mimedoc.wsdl Added via 1d25fc5c7b62f763b66a4c745d5e29894419aca9 and never used - ext/reflection/tests/exception.inc Removed via 9f8ba2e8a13966eb4b7832d8909ce4ddaa76af2f - ext/phar/tests/files/extracted.inc Removed via 549bf83bd132c5e9bf120194f4e6fab9cbd8c30c - ext/phar/tests/cache_list/files/extracted.inc Added via 05c31040972206179bd2858775db61cba35a2ea7 and never used
Diffstat (limited to 'ext/simplexml')
-rw-r--r--ext/simplexml/tests/bug25756.xsd24
-rw-r--r--ext/simplexml/tests/bug25756_1.xml13
-rw-r--r--ext/simplexml/tests/bug25756_2.xml13
3 files changed, 0 insertions, 50 deletions
diff --git a/ext/simplexml/tests/bug25756.xsd b/ext/simplexml/tests/bug25756.xsd
deleted file mode 100644
index 427b7a1a14..0000000000
--- a/ext/simplexml/tests/bug25756.xsd
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
- <xsd:element name="foo" type="foo-type" />
- <xsd:complexType name="item-type">
- <xsd:all>
- <xsd:element name="product-name" type="xsd:string"
- minOccurs="1" maxOccurs="1"/>
- <xsd:element name="quantity" type="xsd:decimal"
- minOccurs="1" maxOccurs="1"/>
- </xsd:all>
- </xsd:complexType>
- <xsd:complexType name="foo-type">
- <xsd:sequence>
- <xsd:element name="items" minoccurs="1" maxOccurs="1">
- <xsd:complexType>
- <xsd:sequence>
- <xsd:element name="item" type="item-type"
- minOccurs="0" maxOccurs="unbounded" />
- </xsd:sequence>
- </xsd:complexType>
- </xsd:element>
- </xsd:sequence>
- </xsd:complexType>
-</xsd:schema>
diff --git a/ext/simplexml/tests/bug25756_1.xml b/ext/simplexml/tests/bug25756_1.xml
deleted file mode 100644
index 33ab30be10..0000000000
--- a/ext/simplexml/tests/bug25756_1.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<foo>
- <items>
- <item>
- <product-name>abc</product-name>
- <quantity>123</quantity>
- </item>
- <item>
- <product-name>def</product-name>
- <quantity>456</quantity>
- </item>
- </items>
-</foo>
diff --git a/ext/simplexml/tests/bug25756_2.xml b/ext/simplexml/tests/bug25756_2.xml
deleted file mode 100644
index 53037ef769..0000000000
--- a/ext/simplexml/tests/bug25756_2.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<foo>
- <items>
- <item>
- <product-name>abc</product-name>
- <quantity>abc</quantity>
- </item>
- <item>
- <product-name>abc</product-name>
- <quantity>123</quantity>
- </item>
- </items>
-</foo>