tests/TestCompiler.vala
authorAlan Knowles <alan@roojs.com>
Thu, 14 May 2015 07:47:22 +0000 (15:47 +0800)
committerAlan Knowles <alan@roojs.com>
Thu, 14 May 2015 07:47:22 +0000 (15:47 +0800)
tests/TestCompiler.vala

index 0d2d13d..7dc7039 100644 (file)
@@ -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;
 }
-*/