-
Notifications
You must be signed in to change notification settings - Fork 516
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Merge xcode9 into master (#2707)"
This reverts commit 67f4130.
- Loading branch information
Showing
495 changed files
with
2,599 additions
and
35,679 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule Touch.Unit
updated
from 8f1e19 to 055659
Submodule Xamarin.MacDev
updated
9 files
Submodule mono
updated
12 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | ||
<xsl:output indent="no" method='text'/> | ||
<xsl:strip-space elements="*"/> | ||
|
||
<xsl:template match="/"> | ||
<xsl:apply-templates/> | ||
</xsl:template> | ||
|
||
<xsl:template match="//test-suite[@type='TestFixture']"> | ||
<xsl:text> </xsl:text> | ||
<xsl:value-of select="@name"/> | ||
<xsl:text> </xsl:text> | ||
<xsl:for-each select="current()/results/test-case"> | ||
<xsl:choose> | ||
<xsl:when test="@result='Success'"> | ||
<xsl:text> [PASS] </xsl:text> | ||
</xsl:when> | ||
<xsl:when test="@result='Failure' or @result='Error'"> | ||
<xsl:text> [FAIL] </xsl:text> | ||
</xsl:when> | ||
<xsl:when test="@result='Ignored'"> | ||
<xsl:text> [IGNORED] </xsl:text> | ||
</xsl:when> | ||
<xsl:when test="@result='Inconclusive'"> | ||
<xsl:text> [INCONCLUSIVE] </xsl:text> | ||
</xsl:when> | ||
<xsl:otherwise> | ||
<xsl:text> [INFO] </xsl:text> | ||
</xsl:otherwise> | ||
</xsl:choose> | ||
<xsl:value-of select="../../@name"/><xsl:text>.</xsl:text><xsl:value-of select="@name"/><xsl:if test="failure/message != ''"> : </xsl:if><xsl:value-of select="failure/message"/><xsl:text> </xsl:text> | ||
<xsl:if test="failure/stack-trace != ''"> | ||
<xsl:value-of select="failure/stack-trace"/> | ||
<xsl:text> </xsl:text> | ||
</xsl:if> | ||
</xsl:for-each> | ||
<xsl:choose> | ||
<xsl:when test="@time"> | ||
<xsl:value-of select="concat(@name,' : ', @time)"/> | ||
</xsl:when> | ||
<xsl:otherwise> | ||
<xsl:value-of select="@name"/> | ||
</xsl:otherwise> | ||
</xsl:choose> | ||
<xsl:text> </xsl:text> | ||
</xsl:template> | ||
<xsl:template match="//test-suite[@type!='TestFixture']/failure/message"> | ||
</xsl:template> | ||
</xsl:stylesheet> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.