summaryrefslogtreecommitdiffstats
path: root/libxslt/tests/exslt/math
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2016-11-17 21:20:33 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2016-11-17 21:20:33 (GMT)
commit8d530e150d787e9a74e27592d4e67a496cd922da (patch)
tree654bad0c60b323298447897b79abd7bd9ce8f3c7 /libxslt/tests/exslt/math
parent8096d34300076a1aa9cb517de49fb920a051939f (diff)
downloadblt-8d530e150d787e9a74e27592d4e67a496cd922da.zip
blt-8d530e150d787e9a74e27592d4e67a496cd922da.tar.gz
blt-8d530e150d787e9a74e27592d4e67a496cd922da.tar.bz2
local fork libxslt
Diffstat (limited to 'libxslt/tests/exslt/math')
-rw-r--r--libxslt/tests/exslt/math/Makefile.am57
-rw-r--r--libxslt/tests/exslt/math/highest.1.out2
-rw-r--r--libxslt/tests/exslt/math/highest.1.xml7
-rw-r--r--libxslt/tests/exslt/math/highest.1.xsl14
-rw-r--r--libxslt/tests/exslt/math/highest.2.out2
-rw-r--r--libxslt/tests/exslt/math/highest.2.xml2
-rw-r--r--libxslt/tests/exslt/math/highest.2.xsl14
-rw-r--r--libxslt/tests/exslt/math/highest.5.out8
-rw-r--r--libxslt/tests/exslt/math/highest.5.xml10
-rw-r--r--libxslt/tests/exslt/math/highest.5.xsl18
-rw-r--r--libxslt/tests/exslt/math/lowest.1.out2
-rw-r--r--libxslt/tests/exslt/math/lowest.1.xml7
-rw-r--r--libxslt/tests/exslt/math/lowest.1.xsl14
-rw-r--r--libxslt/tests/exslt/math/lowest.2.out2
-rw-r--r--libxslt/tests/exslt/math/lowest.2.xml2
-rw-r--r--libxslt/tests/exslt/math/lowest.2.xsl14
-rw-r--r--libxslt/tests/exslt/math/max.1.out2
-rw-r--r--libxslt/tests/exslt/math/max.1.xml7
-rw-r--r--libxslt/tests/exslt/math/max.1.xsl14
-rw-r--r--libxslt/tests/exslt/math/max.2.out2
-rw-r--r--libxslt/tests/exslt/math/max.2.xml2
-rw-r--r--libxslt/tests/exslt/math/max.2.xsl14
-rw-r--r--libxslt/tests/exslt/math/max.3.out4
-rw-r--r--libxslt/tests/exslt/math/max.3.xml9
-rw-r--r--libxslt/tests/exslt/math/max.3.xsl80
-rw-r--r--libxslt/tests/exslt/math/max.5.out4
-rw-r--r--libxslt/tests/exslt/math/max.5.xml6
-rw-r--r--libxslt/tests/exslt/math/max.5.xsl10
-rw-r--r--libxslt/tests/exslt/math/min.1.out2
-rw-r--r--libxslt/tests/exslt/math/min.1.xml7
-rw-r--r--libxslt/tests/exslt/math/min.1.xsl14
-rw-r--r--libxslt/tests/exslt/math/min.2.out2
-rw-r--r--libxslt/tests/exslt/math/min.2.xml2
-rw-r--r--libxslt/tests/exslt/math/min.2.xsl14
-rw-r--r--libxslt/tests/exslt/math/power.1.out8
-rw-r--r--libxslt/tests/exslt/math/power.1.xml8
-rw-r--r--libxslt/tests/exslt/math/power.1.xsl19
37 files changed, 0 insertions, 405 deletions
diff --git a/libxslt/tests/exslt/math/Makefile.am b/libxslt/tests/exslt/math/Makefile.am
deleted file mode 100644
index 68bea6a..0000000
--- a/libxslt/tests/exslt/math/Makefile.am
+++ /dev/null
@@ -1,57 +0,0 @@
-## Process this file with automake to produce Makefile.in
-
-$(top_builddir)/xsltproc/xsltproc:
- @(cd ../../../xsltproc ; $(MAKE) xsltproc)
-
-EXTRA_DIST = \
- highest.1.out highest.1.xml highest.1.xsl \
- highest.2.out highest.2.xml highest.2.xsl \
- highest.5.out highest.5.xml highest.5.xsl \
- lowest.1.out lowest.1.xml lowest.1.xsl \
- lowest.2.out lowest.2.xml lowest.2.xsl \
- max.1.out max.1.xml max.1.xsl \
- max.2.out max.2.xml max.2.xsl \
- max.3.out max.3.xml max.3.xsl \
- max.5.out max.5.xml max.5.xsl \
- power.1.out power.1.xml power.1.xsl \
- min.1.out min.1.xml min.1.xsl \
- min.2.out min.2.xml min.2.xsl
-
-CLEANFILES = .memdump
-
-valgrind:
- @echo '## Running the regression tests under Valgrind'
- $(MAKE) CHECKER='libtool --mode=execute valgrind -q --leak-check=full' tests
-
-test tests: $(top_builddir)/xsltproc/xsltproc
- @echo '## Running exslt math tests'
- @(echo > .memdump)
- @(for i in $(srcdir)/*.xsl ; do \
- name=`basename $$i .xsl` ; \
- if [ ! -f $(srcdir)/$$name.xml ] ; then continue ; fi ; \
- log=`$(CHECKER) $(top_builddir)/xsltproc/xsltproc \
- $(srcdir)/$$name.xsl $(srcdir)/$$name.xml > $$name.res 2>$$name.bad;\
- if [ ! -f $(srcdir)/$$name.out ] ; then \
- cp $$name.res $(srcdir)/$$name.out ; \
- if [ -s $$name.bad ] ; then \
- mv $$name.bad $(srcdir)/$$name.err ; \
- fi ; \
- else \
- if [ ! -s $$name.res ] ; then \
- echo "Fatal error, no $$name.res\n" ; \
- else \
- diff $(srcdir)/$$name.out $$name.res ; \
- if [ -s $(srcdir)/$$name.err ] ; then \
- diff $(srcdir)/$$name.err $$name.bad; \
- else \
- diff /dev/null $$name.bad; \
- fi ; \
- fi ; \
- fi; \
- grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0" || true`;\
- if [ -n "$$log" ] ; then \
- echo $$name result ; \
- echo "$$log" ; \
- fi ; \
- rm -f $$name.res $$name.bad ; \
- done)
diff --git a/libxslt/tests/exslt/math/highest.1.out b/libxslt/tests/exslt/math/highest.1.out
deleted file mode 100644
index 471e8dc..0000000
--- a/libxslt/tests/exslt/math/highest.1.out
+++ /dev/null
@@ -1,2 +0,0 @@
-<?xml version="1.0"?>
-<result>Highest: two</result>
diff --git a/libxslt/tests/exslt/math/highest.1.xml b/libxslt/tests/exslt/math/highest.1.xml
deleted file mode 100644
index bb438f3..0000000
--- a/libxslt/tests/exslt/math/highest.1.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0"?>
-<values>
- <value id="one">7</value>
- <value id="two">11</value>
- <value id="three">8</value>
- <value id="four">4</value>
-</values> \ No newline at end of file
diff --git a/libxslt/tests/exslt/math/highest.1.xsl b/libxslt/tests/exslt/math/highest.1.xsl
deleted file mode 100644
index eccb186..0000000
--- a/libxslt/tests/exslt/math/highest.1.xsl
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:math="http://exslt.org/math"
- exclude-result-prefixes="math">
-
-<xsl:template match="values">
- <result>
- <xsl:text>Highest: </xsl:text>
- <xsl:value-of select="math:highest(value)/@id" />
- </result>
-</xsl:template>
-
-</xsl:stylesheet> \ No newline at end of file
diff --git a/libxslt/tests/exslt/math/highest.2.out b/libxslt/tests/exslt/math/highest.2.out
deleted file mode 100644
index 06ef06f..0000000
--- a/libxslt/tests/exslt/math/highest.2.out
+++ /dev/null
@@ -1,2 +0,0 @@
-<?xml version="1.0"?>
-<result>Highest: </result>
diff --git a/libxslt/tests/exslt/math/highest.2.xml b/libxslt/tests/exslt/math/highest.2.xml
deleted file mode 100644
index 6f5aaee..0000000
--- a/libxslt/tests/exslt/math/highest.2.xml
+++ /dev/null
@@ -1,2 +0,0 @@
-<?xml version="1.0"?>
-<values /> \ No newline at end of file
diff --git a/libxslt/tests/exslt/math/highest.2.xsl b/libxslt/tests/exslt/math/highest.2.xsl
deleted file mode 100644
index eccb186..0000000
--- a/libxslt/tests/exslt/math/highest.2.xsl
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:math="http://exslt.org/math"
- exclude-result-prefixes="math">
-
-<xsl:template match="values">
- <result>
- <xsl:text>Highest: </xsl:text>
- <xsl:value-of select="math:highest(value)/@id" />
- </result>
-</xsl:template>
-
-</xsl:stylesheet> \ No newline at end of file
diff --git a/libxslt/tests/exslt/math/highest.5.out b/libxslt/tests/exslt/math/highest.5.out
deleted file mode 100644
index 6e6c918..0000000
--- a/libxslt/tests/exslt/math/highest.5.out
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0"?>
-<out xmlns:math="http://exslt.org/math">
- * <lowest-prices>4;
- 7;
- </lowest-prices>
- * <highest-prices>1;
- 5;
- </highest-prices></out>
diff --git a/libxslt/tests/exslt/math/highest.5.xml b/libxslt/tests/exslt/math/highest.5.xml
deleted file mode 100644
index 3752f75..0000000
--- a/libxslt/tests/exslt/math/highest.5.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version="1.0" ?>
-<sales>
-<sale id="1" qty="10" price="15.00"/>
-<sale id="2" qty="2" price="12.00"/>
-<sale id="3" qty="1" price="10.00"/>
-<sale id="4" qty="2" price="5.00"/>
-<sale id="5" qty="2" price="15.00"/>
-<sale id="6" qty="2" price="8.00"/>
-<sale id="7" qty="2" price="5.00"/>
-</sales>
diff --git a/libxslt/tests/exslt/math/highest.5.xsl b/libxslt/tests/exslt/math/highest.5.xsl
deleted file mode 100644
index c294e76..0000000
--- a/libxslt/tests/exslt/math/highest.5.xsl
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:template match="/" xmlns:math="http://exslt.org/math">
- <out>
- * <lowest-prices>
- <xsl:for-each select="math:lowest(//sale/@price)">
- <xsl:value-of select="../@id"/>;
- </xsl:for-each>
- </lowest-prices>
- * <highest-prices>
- <xsl:for-each select="math:highest(//sale/@price)">
- <xsl:value-of select="../@id"/>;
- </xsl:for-each>
- </highest-prices>
- </out>
- </xsl:template>
-</xsl:stylesheet>
-
diff --git a/libxslt/tests/exslt/math/lowest.1.out b/libxslt/tests/exslt/math/lowest.1.out
deleted file mode 100644
index c948f25..0000000
--- a/libxslt/tests/exslt/math/lowest.1.out
+++ /dev/null
@@ -1,2 +0,0 @@
-<?xml version="1.0"?>
-<result>Lowest: four</result>
diff --git a/libxslt/tests/exslt/math/lowest.1.xml b/libxslt/tests/exslt/math/lowest.1.xml
deleted file mode 100644
index bb438f3..0000000
--- a/libxslt/tests/exslt/math/lowest.1.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0"?>
-<values>
- <value id="one">7</value>
- <value id="two">11</value>
- <value id="three">8</value>
- <value id="four">4</value>
-</values> \ No newline at end of file
diff --git a/libxslt/tests/exslt/math/lowest.1.xsl b/libxslt/tests/exslt/math/lowest.1.xsl
deleted file mode 100644
index 70bec0a..0000000
--- a/libxslt/tests/exslt/math/lowest.1.xsl
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:math="http://exslt.org/math"
- exclude-result-prefixes="math">
-
-<xsl:template match="values">
- <result>
- <xsl:text>Lowest: </xsl:text>
- <xsl:value-of select="math:lowest(value)/@id" />
- </result>
-</xsl:template>
-
-</xsl:stylesheet> \ No newline at end of file
diff --git a/libxslt/tests/exslt/math/lowest.2.out b/libxslt/tests/exslt/math/lowest.2.out
deleted file mode 100644
index 137056d..0000000
--- a/libxslt/tests/exslt/math/lowest.2.out
+++ /dev/null
@@ -1,2 +0,0 @@
-<?xml version="1.0"?>
-<result>Lowest: </result>
diff --git a/libxslt/tests/exslt/math/lowest.2.xml b/libxslt/tests/exslt/math/lowest.2.xml
deleted file mode 100644
index 6f5aaee..0000000
--- a/libxslt/tests/exslt/math/lowest.2.xml
+++ /dev/null
@@ -1,2 +0,0 @@
-<?xml version="1.0"?>
-<values /> \ No newline at end of file
diff --git a/libxslt/tests/exslt/math/lowest.2.xsl b/libxslt/tests/exslt/math/lowest.2.xsl
deleted file mode 100644
index 70bec0a..0000000
--- a/libxslt/tests/exslt/math/lowest.2.xsl
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:math="http://exslt.org/math"
- exclude-result-prefixes="math">
-
-<xsl:template match="values">
- <result>
- <xsl:text>Lowest: </xsl:text>
- <xsl:value-of select="math:lowest(value)/@id" />
- </result>
-</xsl:template>
-
-</xsl:stylesheet> \ No newline at end of file
diff --git a/libxslt/tests/exslt/math/max.1.out b/libxslt/tests/exslt/math/max.1.out
deleted file mode 100644
index eef5176..0000000
--- a/libxslt/tests/exslt/math/max.1.out
+++ /dev/null
@@ -1,2 +0,0 @@
-<?xml version="1.0"?>
-<result>Maximum: 11</result>
diff --git a/libxslt/tests/exslt/math/max.1.xml b/libxslt/tests/exslt/math/max.1.xml
deleted file mode 100644
index f4229ec..0000000
--- a/libxslt/tests/exslt/math/max.1.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0"?>
-<values>
- <value>7</value>
- <value>11</value>
- <value>8</value>
- <value>4</value>
-</values> \ No newline at end of file
diff --git a/libxslt/tests/exslt/math/max.1.xsl b/libxslt/tests/exslt/math/max.1.xsl
deleted file mode 100644
index 82e91b5..0000000
--- a/libxslt/tests/exslt/math/max.1.xsl
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:math="http://exslt.org/math"
- exclude-result-prefixes="math">
-
-<xsl:template match="values">
- <result>
- <xsl:text>Maximum: </xsl:text>
- <xsl:value-of select="math:max(value)" />
- </result>
-</xsl:template>
-
-</xsl:stylesheet> \ No newline at end of file
diff --git a/libxslt/tests/exslt/math/max.2.out b/libxslt/tests/exslt/math/max.2.out
deleted file mode 100644
index 491a226..0000000
--- a/libxslt/tests/exslt/math/max.2.out
+++ /dev/null
@@ -1,2 +0,0 @@
-<?xml version="1.0"?>
-<result>Maximum: NaN</result>
diff --git a/libxslt/tests/exslt/math/max.2.xml b/libxslt/tests/exslt/math/max.2.xml
deleted file mode 100644
index 6f5aaee..0000000
--- a/libxslt/tests/exslt/math/max.2.xml
+++ /dev/null
@@ -1,2 +0,0 @@
-<?xml version="1.0"?>
-<values /> \ No newline at end of file
diff --git a/libxslt/tests/exslt/math/max.2.xsl b/libxslt/tests/exslt/math/max.2.xsl
deleted file mode 100644
index 82e91b5..0000000
--- a/libxslt/tests/exslt/math/max.2.xsl
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:math="http://exslt.org/math"
- exclude-result-prefixes="math">
-
-<xsl:template match="values">
- <result>
- <xsl:text>Maximum: </xsl:text>
- <xsl:value-of select="math:max(value)" />
- </result>
-</xsl:template>
-
-</xsl:stylesheet> \ No newline at end of file
diff --git a/libxslt/tests/exslt/math/max.3.out b/libxslt/tests/exslt/math/max.3.out
deleted file mode 100644
index d23881c..0000000
--- a/libxslt/tests/exslt/math/max.3.out
+++ /dev/null
@@ -1,4 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1" standalone="yes"?>
-Largest number value: 500
-Largest number value (computed by function foo:getMaxVal): 500
-Largest number value (computed by function foo:getMaxVal2): 500
diff --git a/libxslt/tests/exslt/math/max.3.xml b/libxslt/tests/exslt/math/max.3.xml
deleted file mode 100644
index 79a00e1..0000000
--- a/libxslt/tests/exslt/math/max.3.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1" standalone="no"?>
-<rootelement>
- <childelement val="100"/>
- <childelement val="200"/>
- <childelement val="500"/>
- <childelement val="300"/>
- <childelement val="nothing"/>
-</rootelement>
-
diff --git a/libxslt/tests/exslt/math/max.3.xsl b/libxslt/tests/exslt/math/max.3.xsl
deleted file mode 100644
index b3410f6..0000000
--- a/libxslt/tests/exslt/math/max.3.xsl
+++ /dev/null
@@ -1,80 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1" standalone="no"?>
-
-<!DOCTYPE xsl:stylesheet [
-
-<!-- namespace for SVG -->
-<!ENTITY svgns "http://www.w3.org/2000/svg">
-<!-- namespace for XSLT -->
-<!ENTITY xsltns "http://www.w3.org/1999/XSL/Transform">
-
-<!-- namespaces for several EXSLT extension modules (see
- http://www.exslt.org for description) -->
-<!ENTITY cns "http://exslt.org/common"> <!-- EXSLT-Common -->
-<!ENTITY fns "http://exslt.org/functions"> <!-- EXSLT-Functions -->
-<!ENTITY mns "http://exslt.org/math"> <!-- EXSLT-Math -->
-
-<!ENTITY foons "http://www.foo.org/bar">
-
-]>
-
-<xsl:stylesheet version="1.0"
- xmlns="&svgns;"
- xmlns:xsl="&xsltns;"
- xmlns:exsl="&cns;"
- xmlns:func="&fns;"
- xmlns:math="&mns;"
- xmlns:foo="&foons;"
- extension-element-prefixes="exsl func math foo"
- exclude-result-prefixes="xsl exsl func math">
-
-<xsl:output method="xml" indent="yes" encoding="iso-8859-1" standalone="yes"/>
-
-<xsl:template match="/">
-
- <xsl:text>Largest number value: </xsl:text>
- <xsl:value-of
- select="math:max(rootelement/childelement/@val[string(number(.)) != 'NaN'])"/>
- <xsl:text>
-Largest number value (computed by function foo:getMaxVal): </xsl:text>
- <xsl:value-of select="foo:getMaxVal(rootelement/childelement)"/>
- <xsl:text>
-Largest number value (computed by function foo:getMaxVal2): </xsl:text>
- <xsl:value-of select="foo:getMaxVal2(rootelement/childelement)"/>
-</xsl:template>
-
-<func:function name="foo:getMaxVal">
- <xsl:param name="nodes"/>
-
- <xsl:variable name="resNodes">
- <xsl:for-each select="$nodes">
- <xsl:if test="@val and string(number(@val)) != 'NaN'">
- <dummynode>
- <xsl:value-of select="@val"/>
- </dummynode>
- </xsl:if>
- </xsl:for-each>
- </xsl:variable>
-
- <xsl:variable name="resNodeSet" select="exsl:node-set($resNodes)"/>
-
- <func:result select="math:max($resNodeSet/*)"/>
-</func:function>
-
-<func:function name="foo:getMaxVal2">
- <xsl:param name="nodes"/>
-
- <xsl:variable name="resNodes">
- <xsl:for-each select="$nodes">
- <xsl:if test="@val and string(number(@val)) != 'NaN'">
- <dummynode>
- <xsl:value-of select="@val"/>
- </dummynode>
- </xsl:if>
- </xsl:for-each>
- </xsl:variable>
-
- <func:result select="math:max(exsl:node-set($resNodes)/*)"/>
-</func:function>
-
-</xsl:stylesheet>
-
diff --git a/libxslt/tests/exslt/math/max.5.out b/libxslt/tests/exslt/math/max.5.out
deleted file mode 100644
index f8b0a31..0000000
--- a/libxslt/tests/exslt/math/max.5.out
+++ /dev/null
@@ -1,4 +0,0 @@
-<?xml version="1.0"?>
-<out xmlns:math="http://exslt.org/math">
- Minimum: <minprice>10</minprice>
- Maximum: <maxprice>15</maxprice></out>
diff --git a/libxslt/tests/exslt/math/max.5.xml b/libxslt/tests/exslt/math/max.5.xml
deleted file mode 100644
index e34f289..0000000
--- a/libxslt/tests/exslt/math/max.5.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" ?>
-<sales>
-<sale qty="10" price="15.00"/>
-<sale qty="2" price="12.00"/>
-<sale qty="1" price="10.00"/>
-</sales>
diff --git a/libxslt/tests/exslt/math/max.5.xsl b/libxslt/tests/exslt/math/max.5.xsl
deleted file mode 100644
index 547e8c8..0000000
--- a/libxslt/tests/exslt/math/max.5.xsl
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:template match="/" xmlns:math="http://exslt.org/math">
- <out>
- Minimum: <minprice><xsl:value-of select="math:min(//sale/@price)"/></minprice>
- Maximum: <maxprice><xsl:value-of select="math:max(//sale/@price)"/></maxprice>
- </out>
- </xsl:template>
-</xsl:stylesheet>
-
diff --git a/libxslt/tests/exslt/math/min.1.out b/libxslt/tests/exslt/math/min.1.out
deleted file mode 100644
index 7ca4db5..0000000
--- a/libxslt/tests/exslt/math/min.1.out
+++ /dev/null
@@ -1,2 +0,0 @@
-<?xml version="1.0"?>
-<result>Minimum: 4</result>
diff --git a/libxslt/tests/exslt/math/min.1.xml b/libxslt/tests/exslt/math/min.1.xml
deleted file mode 100644
index f4229ec..0000000
--- a/libxslt/tests/exslt/math/min.1.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0"?>
-<values>
- <value>7</value>
- <value>11</value>
- <value>8</value>
- <value>4</value>
-</values> \ No newline at end of file
diff --git a/libxslt/tests/exslt/math/min.1.xsl b/libxslt/tests/exslt/math/min.1.xsl
deleted file mode 100644
index ca619cf..0000000
--- a/libxslt/tests/exslt/math/min.1.xsl
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:math="http://exslt.org/math"
- exclude-result-prefixes="math">
-
-<xsl:template match="values">
- <result>
- <xsl:text>Minimum: </xsl:text>
- <xsl:value-of select="math:min(value)" />
- </result>
-</xsl:template>
-
-</xsl:stylesheet> \ No newline at end of file
diff --git a/libxslt/tests/exslt/math/min.2.out b/libxslt/tests/exslt/math/min.2.out
deleted file mode 100644
index 37b507a..0000000
--- a/libxslt/tests/exslt/math/min.2.out
+++ /dev/null
@@ -1,2 +0,0 @@
-<?xml version="1.0"?>
-<result>Minimum: NaN</result>
diff --git a/libxslt/tests/exslt/math/min.2.xml b/libxslt/tests/exslt/math/min.2.xml
deleted file mode 100644
index 6f5aaee..0000000
--- a/libxslt/tests/exslt/math/min.2.xml
+++ /dev/null
@@ -1,2 +0,0 @@
-<?xml version="1.0"?>
-<values /> \ No newline at end of file
diff --git a/libxslt/tests/exslt/math/min.2.xsl b/libxslt/tests/exslt/math/min.2.xsl
deleted file mode 100644
index ca619cf..0000000
--- a/libxslt/tests/exslt/math/min.2.xsl
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:math="http://exslt.org/math"
- exclude-result-prefixes="math">
-
-<xsl:template match="values">
- <result>
- <xsl:text>Minimum: </xsl:text>
- <xsl:value-of select="math:min(value)" />
- </result>
-</xsl:template>
-
-</xsl:stylesheet> \ No newline at end of file
diff --git a/libxslt/tests/exslt/math/power.1.out b/libxslt/tests/exslt/math/power.1.out
deleted file mode 100644
index da9cb6d..0000000
--- a/libxslt/tests/exslt/math/power.1.out
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0"?>
-<results>
- <result>1</result>
- <result>7</result>
- <result>2.85311670611e+11</result>
- <result>256</result>
- <result>243</result>
-</results>
diff --git a/libxslt/tests/exslt/math/power.1.xml b/libxslt/tests/exslt/math/power.1.xml
deleted file mode 100644
index 93e0401..0000000
--- a/libxslt/tests/exslt/math/power.1.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0"?>
-<values>
- <value base="1">7</value>
- <value base="7">1</value>
- <value base="11">11</value>
- <value base="2">8</value>
- <value base="3">5</value>
-</values>
diff --git a/libxslt/tests/exslt/math/power.1.xsl b/libxslt/tests/exslt/math/power.1.xsl
deleted file mode 100644
index aad0bd7..0000000
--- a/libxslt/tests/exslt/math/power.1.xsl
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:math="http://exslt.org/math"
- exclude-result-prefixes="math">
-
-<xsl:template match="values">
- <results>
- <xsl:apply-templates/>
- </results>
-</xsl:template>
-
-<xsl:template match="value">
- <result>
- <xsl:value-of select="math:power(./@base,.)" />
- </result>
-</xsl:template>
-
-</xsl:stylesheet>