append [exit] after end of output
authorMatthias Kramm <kramm@quiss.org>
Mon, 2 Feb 2009 13:54:16 +0000 (14:54 +0100)
committerMatthias Kramm <kramm@quiss.org>
Mon, 2 Feb 2009 13:54:16 +0000 (14:54 +0100)
70 files changed:
lib/as3/ok/anonymous_functions.as
lib/as3/ok/arrays.as
lib/as3/ok/assignments.as
lib/as3/ok/boolvalue.as
lib/as3/ok/boundmethod.as
lib/as3/ok/break-label.as
lib/as3/ok/break.as
lib/as3/ok/class1.as
lib/as3/ok/classinit.as
lib/as3/ok/compare.as
lib/as3/ok/const.as
lib/as3/ok/constructorfunc.as
lib/as3/ok/continue.as
lib/as3/ok/defaultparamvalue.as
lib/as3/ok/defaultvalue.as
lib/as3/ok/delete.as
lib/as3/ok/dynamicobj.as
lib/as3/ok/elseif.as
lib/as3/ok/extendinterface.as
lib/as3/ok/extends.as
lib/as3/ok/extraparams.as
lib/as3/ok/finally.as
lib/as3/ok/finally2.as
lib/as3/ok/float.as
lib/as3/ok/for-in.as
lib/as3/ok/for.as
lib/as3/ok/for2.as
lib/as3/ok/funcassign.as
lib/as3/ok/getset.as
lib/as3/ok/globalfunction.as
lib/as3/ok/globalvarassign.as
lib/as3/ok/hide.as
lib/as3/ok/if.as
lib/as3/ok/import.as
lib/as3/ok/in.as
lib/as3/ok/interface.as
lib/as3/ok/late.as
lib/as3/ok/members.as
lib/as3/ok/namespaces1.as
lib/as3/ok/nested_functions.as
lib/as3/ok/new.as
lib/as3/ok/nopackage.as
lib/as3/ok/nopackage2.as
lib/as3/ok/null.as
lib/as3/ok/numbers.as
lib/as3/ok/ops.as
lib/as3/ok/packageinit.as
lib/as3/ok/packagestr.as
lib/as3/ok/precedence.as
lib/as3/ok/prototype.as
lib/as3/ok/reassign.as
lib/as3/ok/reconcile.as
lib/as3/ok/recursion.as
lib/as3/ok/regexp.as
lib/as3/ok/return.as
lib/as3/ok/scope.as
lib/as3/ok/slots.as
lib/as3/ok/static.as
lib/as3/ok/strings.as
lib/as3/ok/strings2.as
lib/as3/ok/super.as
lib/as3/ok/switch.as
lib/as3/ok/this.as
lib/as3/ok/trace.as
lib/as3/ok/trycatch.as
lib/as3/ok/typecast.as
lib/as3/ok/typeof.as
lib/as3/ok/unnamed_package.as
lib/as3/ok/while.as
lib/as3/ok/with.as

index f8bbf94..6b05500 100644 (file)
@@ -17,6 +17,8 @@ package {
             l("ok 2/3");
 
             run(function(text) {trace(text)}, "ok 3/3")
+
+            trace("[exit]");
         }
     }
 }
index 9622a7a..ff2f8ee 100644 (file)
@@ -15,6 +15,8 @@ package {
             if(b[1]==2) trace("ok 6/8");
             if(b[2]==3) trace("ok 7/8");
             if(b.length=3) trace("ok 8/8");
+            
+            trace("[exit]");
         }
     }
 }
index 0958e54..ef2dea9 100644 (file)
@@ -50,6 +50,8 @@ package {
             var d:int = 4;
             a += b += c += d += 1
             assert(a==11 && b==10 && c==8 && d==5);
+
+            trace("[exit]");
         }
     }
 }
index df946cb..5ed4cae 100644 (file)
@@ -35,6 +35,8 @@ package {
             if(true || error() || false) trace("ok 12/16");
             if(ok3() || true || true) trace("ok 14/16");
             if(false || false || ok4()) trace("ok 16/16");
+            
+            trace("[exit]");
         }
     }
 }
index ecf77ec..0a18e7e 100644 (file)
@@ -22,6 +22,8 @@ package {
 
             x = (new Other).print2;
             x();
+            
+            trace("[exit]");
         }
     }
 }
index 0c80343..b53ee10 100644 (file)
@@ -36,6 +36,8 @@ package {
                 break;
                 trace("error");
             }
+            
+            trace("[exit]");
         }
     }
 }
index 852fc3c..be3866b 100644 (file)
@@ -39,6 +39,8 @@ package test.package {
             }
             if(i!=30) trace("error");
             else trace("ok 4/4");
+            
+            trace("[exit]");
         }
     }
 }
index b1e2835..8df6207 100644 (file)
@@ -2,6 +2,7 @@ package test1 {
     public class Main extends flash.display.MovieClip {
         function Main() {
             trace("ok");
+            trace("[exit]");
         }
     }
     /* explicitly internal */
index 20725d9..93f7a6a 100644 (file)
@@ -20,6 +20,7 @@ package {
 
         function Main() {
             trace(Main.message);
+            trace("[exit]");
         }
     }
 }
index 30bc523..a8b85db 100644 (file)
@@ -30,6 +30,8 @@ package test.package {
             if(b>d) trace("error");else trace("ok 17/18");
 
             trace("ok 18/18");
+            
+            trace("[exit]");
         }
     }
 }
index d327311..a9517aa 100644 (file)
@@ -13,6 +13,8 @@ package {
             trace(ok2);
             trace(this.ok3);
             trace(Main.ok4);
+            
+            trace("[exit]");
         }
     }
 }
index 4a0a261..151fd86 100644 (file)
@@ -23,6 +23,8 @@ package {
             trace(foobar.z);
             foobar.f1();
             foobar.f2();
+            
+            trace("[exit]");
         }
     }
 }
index 570abfb..a2b2679 100644 (file)
@@ -36,6 +36,8 @@ package {
 
             if(j==300)
                 trace("ok 6/6");
+            
+            trace("[exit]");
         }
     }
 }
index 3a75004..ea51e26 100644 (file)
@@ -50,6 +50,8 @@ package {
             testfalse();
             testnull();
             testfloat2();
+            
+            trace("[exit]");
         }
     }
 }
index 68c56ec..6861385 100644 (file)
@@ -34,6 +34,8 @@ package {
             if(this.u==0) trace("ok 12/14");
             if(String(this.f)=="NaN") trace("ok 13/14");
             if(this.m===null) trace("ok 14/14");
+            
+            trace("[exit]");
         }
     }
 }
index add8ba1..2397739 100644 (file)
@@ -18,6 +18,8 @@ package {
                a[3]==4) trace("ok 2/2");
 
             //TODO: we can also delete from XML
+            
+            trace("[exit]");
         }
     }
 }
index 58644ff..d758b26 100644 (file)
@@ -20,6 +20,8 @@ package {
 
             x.f = function() {trace("ok 2/2")};
             x.f();
+            
+            trace("[exit]");
         }
     }
 }
index 25a5e04..7f2455d 100644 (file)
@@ -9,6 +9,8 @@ package {
             } else {
                 trace("error");
             }
+            
+            trace("[exit]");
         }
     }
 }
index 394a939..6eeb4cf 100644 (file)
@@ -20,6 +20,8 @@ package {
             var x:I2 = new C;
             x.f();
             x.g();
+            
+            trace("[exit]");
         }
     }
 }
index 0ad7a49..3ffec18 100644 (file)
@@ -33,6 +33,8 @@ package {
             if(x is D) trace("ok 3/5");
             if(x instanceof X) trace("ok 4/5");
             if(x instanceof D) trace("ok 5/5");
+            
+            trace("[exit]");
         }
     }
 }
index 06e0e8f..df1881a 100644 (file)
@@ -18,6 +18,7 @@ package {
         }
         function Main() {
             test("ok", 1,2,3,4);
+            trace("[exit]");
         }
     }
 }
index 7b4cc83..f614c2b 100644 (file)
@@ -91,6 +91,7 @@ package {
             test_exception();
             test_exception2();
             test_exception3();
+            trace("[exit]");
         }
     }
 }
index 7b9592f..108215d 100644 (file)
@@ -161,6 +161,7 @@ package {
             test_exception3();
             test_empty();
             test_mixed();
+            trace("[exit]");
         }
     }
 }
index 308f07d..f243af0 100644 (file)
@@ -19,6 +19,7 @@ package {
             if(b==10.0) trace("ok 6/8");
             if(c==0.25) trace("ok 7/8");
             if(d==10.625) trace("ok 8/8");
+            trace("[exit]");
         }
     }
 }
index 5725f45..3e17b38 100644 (file)
@@ -39,6 +39,7 @@ package {
                     continue;
             }
             if(j==16) trace("ok 5/5");
+            trace("[exit]");
         }
     }
 }
index d91dd2f..b7e2b4b 100644 (file)
@@ -22,6 +22,7 @@ package {
             for(var a2=0;a2<99;a2++) {
                 if(a2==80) trace("ok 4/4");
             }
+            trace("[exit]");
         }
     }
 }
index a65f24a..b4ade4b 100644 (file)
@@ -17,6 +17,7 @@ package {
             }
             if(z==9) trace("ok 2/2");
             else     trace("error");
+            trace("[exit]");
         }
     }
 }
index 805b5cb..0eb5b96 100644 (file)
@@ -25,6 +25,7 @@ package {
             this.b(2);
             this.c = ok3;
             if(!this.c()) trace("error");
+            trace("[exit]");
         }
     }
 }
index 9b28980..ecff595 100644 (file)
@@ -23,6 +23,7 @@ package {
             var t:Test = new Test();
             t.x++;
             t.n = 3;
+            trace("[exit]");
         }
     }
 }
index 8f5fb44..f411e83 100644 (file)
@@ -33,6 +33,7 @@ package {
     public class Main extends flash.display.MovieClip {
         public function Main() {
             p_A()
+            trace("[exit]");
         }
     }
 }
index 22c49da..4d72c9f 100644 (file)
@@ -11,6 +11,7 @@ package {
     public class Main extends flash.display.MovieClip {
         public function Main () {
             run();
+            trace("[exit]");
         }
     }
 }
index 36ea620..1c6b09f 100644 (file)
@@ -22,6 +22,7 @@ package {
         public function Main() {
             f(); // run static function
             print_xx();
+            trace("[exit]");
         }
     }
 }
index 1504c27..3b4d4dd 100644 (file)
@@ -15,6 +15,7 @@ package {
             else if(false) trace("error");
             else if(true) trace("ok 5/5");
             else if(false) trace("error");
+            trace("[exit]");
         }
     }
 }
index 20c321a..24b4598 100644 (file)
@@ -24,6 +24,7 @@ package {
             new Class2();
             var t = new TextEvent("type",true,true,"ok 3/3");
             trace(t.text);
+            trace("[exit]");
         }
     }
 }
index 49d1449..d92b15e 100644 (file)
@@ -35,6 +35,7 @@ package {
             if("r" in o) trace("ok 7/7");
             delete o["r"];
             if("r" in o) trace("error");
+            trace("[exit]");
         }
     }
 }
index f7efeb0..9c484d9 100644 (file)
@@ -12,6 +12,7 @@ package {
         function Main() {
             var x:I1 = new TestI1();
             x.f();
+            trace("[exit]");
         }
     }
     public interface I2 {
index e25e01f..adb538b 100644 (file)
@@ -5,6 +5,7 @@ package {
             message1 = "ok 1/2";
             this.message2 = "ok 2/2";
             printok1();
+            trace("[exit]");
         }
         public function printok1() {
             printok2(17);
index de17680..5674adc 100644 (file)
@@ -36,6 +36,7 @@ package {
 
             cls.c += 1;
             cls.c -= cls.a;
+            trace("[exit]");
         }
     }
 }
index 96db1f2..aabad2d 100644 (file)
@@ -60,6 +60,7 @@ package {
             my.namespaces.Test.test()
 
             my.namespaces.Test.test3()
+            trace("[exit]");
         }
     }
 }
index 28d5912..041d123 100644 (file)
@@ -28,6 +28,7 @@ package {
             trace(x1);
             trace(x2);
 
+            trace("[exit]");
         }
     }
 }
index 448d506..44ca430 100644 (file)
@@ -50,6 +50,7 @@ package {
             new x;
             var y:Class = Class6;
             new y;
+            trace("[exit]");
         }
     }
 }
index 1821239..d96c08a 100644 (file)
@@ -12,6 +12,7 @@ package {
             f1()
             trace("ok 2/3")
             f3()
+            trace("[exit]");
         }
     }
 }
index a567a1a..bc5ba23 100644 (file)
@@ -9,3 +9,4 @@ function f()
     trace("ok 3/3");
 }
 f()
+trace("[exit]");
index c0b7b35..05ede85 100644 (file)
@@ -10,6 +10,7 @@ package {
             if(x === y) {
                 trace("ok 2/2");
             }
+            trace("[exit]");
 
         }
     }
index a1326b0..4647ed7 100644 (file)
@@ -34,6 +34,7 @@ package test.package {
             if(String(a14) == "171662463") trace("ok 14/15");
             var a15 = -0xa3b5c7f;
             if(String(a15) == "-171662463") trace("ok 15/15");
+            trace("[exit]");
         }
     }
 }
index f11d50c..87de785 100644 (file)
@@ -78,6 +78,8 @@ package {
             /* test comma */
             trace("[comma]");
             assert( (1,2,3,4) == 4);
+            
+            trace("[exit]");
         }
     }
 }
index 2b354c1..bde54b6 100644 (file)
@@ -32,3 +32,5 @@ package {
 }
 
 trace(np_x);
+
+trace("[exit]");
index 975fd69..967eed7 100644 (file)
@@ -24,6 +24,8 @@ package {
             var t = flash.utils.getTimer();
             if(t is int)
                 trace("ok 4/4");
+
+            trace("[exit]");
         }
     }
 }
index 80981f4..2424fc4 100644 (file)
@@ -143,6 +143,7 @@ package {
             v += 3,4;
             compare(v,3)
 
+            trace("[exit]");
         }
 
     }
index 138b778..6cb03ac 100644 (file)
@@ -16,6 +16,8 @@ package {
             trace(m.ok1);
             trace(m.ok2);
             trace(m.ok3);
+            
+            trace("[exit]");
         }
     }
 }
index dda3f78..1bb8310 100644 (file)
@@ -14,6 +14,8 @@ package {
             else        trace("error");
             if(a[1]==1) trace("ok 2/2");
             else        trace("error");
+            
+            trace("[exit]");
         }
     }
 }
index 6cd247b..86574a5 100644 (file)
@@ -77,6 +77,8 @@
                 test5();
                 test6();
                 test7();
+            
+                trace("[exit]");
             }
         }
 }
index bdf6fa8..c1cd0b2 100644 (file)
@@ -13,6 +13,8 @@ package {
 
         public function Main() {
             write(1);
+            
+            trace("[exit]");
         }
     }
 }
index c041eec..e032e95 100644 (file)
@@ -27,6 +27,8 @@ package {
             /* test quotes */
             if(" \" ".search(/"/) == 1) trace("ok 6/7");
             if(' \' '.search(/'/) == 1) trace("ok 7/7");
+            
+            trace("[exit]");
         }
     }
 }
index df57783..b4a7066 100644 (file)
@@ -17,6 +17,8 @@ package {
             trace((new Test).getok1());
             var t = new Test;
             trace(t.getok2());
+            
+            trace("[exit]");
         }
     }
 }
index e63c4ed..d1dd7ce 100644 (file)
@@ -34,6 +34,7 @@ package C {
     public class Main extends flash.display.MovieClip {
         function Main() {
             trace("ok");
+            trace("[exit]");
         }
     }
 }
index 9476dcc..cc1f1c2 100644 (file)
@@ -17,6 +17,7 @@ package {
             trace(this.s2);
             trace(this.s3);
             trace(this.s4);
+            trace("[exit]");
         }
     }
 }
index 09dd115..ca7129c 100644 (file)
@@ -37,6 +37,7 @@ package {
             
             if(TextEvent.TEXT_INPUT == "textInput") 
                 trace("ok 10/10");
+            trace("[exit]");
         }
     }
 }
index 02633e4..5b9f121 100644 (file)
@@ -28,6 +28,7 @@ package {
             else trace("ok 4/5");
             if(this.mystring.charAt(3)!='\xff') trace("error");
             else trace("ok 5/5");
+            trace("[exit]");
         }
     }
 }
index 1f252ee..b6a428d 100644 (file)
@@ -23,6 +23,7 @@ package {
                y.charAt(3) == "\\" &&
                y.charAt(4) == "\7")
             trace("ok 5/5")
+            trace("[exit]");
         }
     }
 }
index b1d7e6c..9775c64 100644 (file)
@@ -25,6 +25,7 @@ package {
     public class Main extends flash.display.MovieClip {
         function Main() {
             new F
+            trace("[exit]");
         }
     }
 }
index 6638a54..87e3830 100644 (file)
@@ -29,6 +29,7 @@ package {
             switch(1) {
                 case 1: late1 = false; break;
             }
+            trace("[exit]");
         }
         var late1:Boolean;
     }
index 2a35c6c..1668ee9 100644 (file)
@@ -25,6 +25,8 @@ package {
             //omit "this":
             s2 = "ok 4/4";
             printok3();
+            
+            trace("[exit]");
         }
     }
 }
index ee09ec1..a5b7b71 100644 (file)
@@ -2,6 +2,8 @@ package {
     public class Main extends flash.display.MovieClip {
         public function Main() {
             trace("ok");
+            
+            trace("[exit]");
         }
     }
 }
index 0a890b9..c47cb6d 100644 (file)
@@ -46,6 +46,7 @@ package {
             catch(x:*) {
                 trace((x as MyOtherError).ok5);
             }
+            trace("[exit]");
 
         }
     }
index 66c2ffd..e1f75cd 100644 (file)
@@ -31,6 +31,7 @@ package {
             if(int(false)==0) trace("ok 6/7");
 
             trace(String(new C)) //will call toString()
+            trace("[exit]");
         }
     }
 }
index 029fde0..138d895 100644 (file)
@@ -11,6 +11,7 @@ package {
             if(typeof(f)=="function") trace("ok 6/7");
             if(typeof(Main)=="object" ||
                typeof(Main)=="movieclip") trace("ok 7/7");
+            trace("[exit]");
         }
     }
 }
index 3806f09..a6c67e5 100644 (file)
@@ -31,6 +31,7 @@ package {
     public class Main extends flash.display.MovieClip {
         public function Main() {
             g()
+            trace("[exit]");
         }
     }
 }
index 83b71d2..bf120cf 100644 (file)
@@ -41,6 +41,7 @@ package test.package {
             sum+=a;
             if(sum!=4321) trace("error");
             else trace("ok 3/3");
+            trace("[exit]");
         }
     }
 }
index 4115257..277e36d 100644 (file)
@@ -21,6 +21,7 @@ package {
                 trace(ok3);
                 ok4();
             }
+            trace("[exit]");
         }
     }
 }