From 81e8e7a613b8a244e4119f39bb30f1733eb4850d Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Thu, 14 May 2015 15:47:22 +0800 Subject: [PATCH] tests/TestCompiler.vala --- tests/TestCompiler.vala | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tests/TestCompiler.vala b/tests/TestCompiler.vala index 0d2d13d91..7dc703927 100644 --- a/tests/TestCompiler.vala +++ b/tests/TestCompiler.vala @@ -176,10 +176,12 @@ namespace Palete { int main (string[] args) { - var a = new ValaSource(file); - a.create_valac_tree(); + for (var i = 0;i < 1000;i++) { + var a = new TestCompiler(file); + a.compileString(); + } return 0; } -*/ + -- 2.39.2