summaryrefslogtreecommitdiff
path: root/ext/xsl/tests/bug26384.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/xsl/tests/bug26384.phpt')
-rw-r--r--ext/xsl/tests/bug26384.phpt33
1 files changed, 0 insertions, 33 deletions
diff --git a/ext/xsl/tests/bug26384.phpt b/ext/xsl/tests/bug26384.phpt
deleted file mode 100644
index b8f80f8c3e..0000000000
--- a/ext/xsl/tests/bug26384.phpt
+++ /dev/null
@@ -1,33 +0,0 @@
---TEST--
-Bug #26384 (domxslt->process causes segfault with xsl:key)
---SKIPIF--
-<?php require_once('skipif.inc'); ?>
---FILE--
-<?php
-$dom = new domDocument;
-$dom->load(dirname(__FILE__)."/area_name.xml");
-if(!$dom) {
- echo "Error while parsing the document\n";
- exit;
-}
-$xsl = new domDocument;
-$xsl->load(dirname(__FILE__)."/area_list.xsl");
-if(!$xsl) {
- echo "Error while parsing the document\n";
- exit;
-}
-$proc = new xsltprocessor;
-if(!$proc) {
- echo "Error while making xsltprocessor object\n";
- exit;
-}
-
-$proc->importStylesheet($xsl);
-print $proc->transformToXml($dom);
-
-//this segfaulted before
-print $dom->documentElement->firstChild->nextSibling->nodeName;
-
---EXPECT--
-HERE
-ROW