diff options
author | Aleksey Gurtovoy <agurtovoy@meta-comm.com> | 2006-07-24 02:02:44 +0000 |
---|---|---|
committer | Aleksey Gurtovoy <agurtovoy@meta-comm.com> | 2006-07-24 02:02:44 +0000 |
commit | 30f2cd114e931ee18880684c6a8d6c377cb81bd8 (patch) | |
tree | 64421816bc6c58c05cf517ddceeaa26955614034 /tools | |
parent | 65a57341ea7cefa10ba47132a37cf7e83bb78140 (diff) | |
download | boost-30f2cd114e931ee18880684c6a8d6c377cb81bd8.tar.gz |
Support toolset aliases in expected results
[SVN r34689]
Diffstat (limited to 'tools')
-rw-r--r-- | tools/regression/xsl_reports/xsl/v2/dump_toolsets.xsl | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/tools/regression/xsl_reports/xsl/v2/dump_toolsets.xsl b/tools/regression/xsl_reports/xsl/v2/dump_toolsets.xsl new file mode 100644 index 0000000000..b9058e35d0 --- /dev/null +++ b/tools/regression/xsl_reports/xsl/v2/dump_toolsets.xsl @@ -0,0 +1,39 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + +Copyright MetaCommunications, Inc. 2006. + +Distributed under the Boost Software License, Version 1.0. (See +accompanying file LICENSE_1_0.txt or copy at +http://www.boost.org/LICENSE_1_0.txt) + +--> + +<xsl:stylesheet + xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:meta="http://www.meta-comm.com" + exclude-result-prefixes="meta" + version="1.0"> + + <xsl:import href="common.xsl"/> + + <xsl:output method="xml" encoding="utf-8"/> + + <xsl:template match="/"> + <xsl:for-each select="expected-failures/toolset"> + <xsl:sort select="@name"/> + <xsl:value-of select="@name"/> + <xsl:if test="count(./toolset-alias)"> + <xsl:text> aka </xsl:text> + <xsl:for-each select="toolset-alias"> + <xsl:sort select="@name"/> + <xsl:value-of select="@name"/> + <xsl:text> </xsl:text> + </xsl:for-each> + </xsl:if> +<xsl:text> +</xsl:text> + </xsl:for-each> + </xsl:template> + +</xsl:stylesheet> |