bench/markdown: disable SpecialXmlCharsDecorator that just timeout
authorJean Privat <jean@pryen.org>
Wed, 27 Apr 2016 15:37:29 +0000 (11:37 -0400)
committerJean Privat <jean@pryen.org>
Wed, 27 Apr 2016 15:37:29 +0000 (11:37 -0400)
Signed-off-by: Jean Privat <jean@pryen.org>

benchmarks/markdown/benches/gen_benches.nit

index 4d974a6..f336524 100644 (file)
@@ -282,7 +282,9 @@ var txt = ctx.rest.first.to_path.read_all
 var lst = [new ManualBreakDecorator, new BlockQuoteDecorator, new CodeBlockDecorator,
                new UnorderedListDecorator, new MixedDecorator, new EmphasisDecorator,
                new StrongDecorator, new InlineCodeDecorator, new FastLinkDecorator,
-               new SpecialXmlCharsDecorator, new InlineHtmlDecorator, new FullLinkDecorator,
+               # FIXME XML is to slow with Nit
+               # new SpecialXmlCharsDecorator,
+               new InlineHtmlDecorator, new FullLinkDecorator,
                new FullImageDecorator, new RefLinkDecorator: MarkdownDecorator]
 
 for dec in lst do