From: Colin A. <col...@go...> - 2007-12-26 11:13:01
|
On 26/12/2007, Eric Bezault <er...@go...> wrote: > Colin Adams wrote: > > On 26/12/2007, Colin Adams <col...@go...> wrote: > > > >> In test-case errorcode1030: Finishing early, having processed test case > >> 'eeocode' in 'eif_except.h' not implemented > >> 'stack_trace_string' in 'eif_except.h' not implemented > >> Call on Void target! > >> Unhandled exception > > > > This problem also occurs on Windows. > > Can you tell me how to reproduce it? Compile gexslt with boehm. Then the following command line reproduces it: gexslt --template=main errorcode1030.xsl where errorcode1030.xsl look like this: <?xml version="1.0"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:my="http://my.com/"> <?error XTDE1030?> <xsl:template name="main"> <out> <xsl:for-each select="1 to 5, 'fred'"> <xsl:sort select="."/> <xsl:value-of select="."/> </xsl:for-each> </out> </xsl:template> </xsl:stylesheet> |