[Swfdec-commits] vivified/code

Pekka Lampila medar at kemper.freedesktop.org
Wed Jun 25 05:02:23 PDT 2008


 vivified/code/test/decompiler/and-or.swf.expect         |    3 +--
 vivified/code/test/decompiler/function-calls.swf.expect |    3 +--
 vivified/code/test/decompiler/hello-world.swf.expect    |    3 +--
 vivified/code/test/decompiler/if-nested.swf.expect      |    3 +--
 vivified/code/test/decompiler/if.swf.expect             |    3 +--
 vivified/code/test/decompiler/loop-empty.swf.expect     |    3 +--
 vivified/code/test/decompiler/loop-infinite.swf.expect  |    3 +--
 vivified/code/test/decompiler/loop-nested.swf.expect    |    3 +--
 vivified/code/test/decompiler/simple-loop.swf.expect    |    3 +--
 9 files changed, 9 insertions(+), 18 deletions(-)

New commits:
commit b22922ed0da4a5c676e579aa2e60d944bb6a2f4e
Author: Pekka Lampila <pekka.lampila at iki.fi>
Date:   Mon Jun 16 14:34:00 2008 +0300

    Fix decompiler tests (output changed to "};" instead of "}\n")

diff --git a/vivified/code/test/decompiler/and-or.swf.expect b/vivified/code/test/decompiler/and-or.swf.expect
index 93440ba..7ff7320 100644
--- a/vivified/code/test/decompiler/and-or.swf.expect
+++ b/vivified/code/test/decompiler/and-or.swf.expect
@@ -14,5 +14,4 @@ function () {
     trace (4);
   if ((1 || 2) && 3)
     trace (4);
-}
-
+};
diff --git a/vivified/code/test/decompiler/function-calls.swf.expect b/vivified/code/test/decompiler/function-calls.swf.expect
index 176d2aa..1c57746 100644
--- a/vivified/code/test/decompiler/function-calls.swf.expect
+++ b/vivified/code/test/decompiler/function-calls.swf.expect
@@ -6,5 +6,4 @@ function () {
   bar (baz);
   this.foo (1, 2, 3);
   bar.baz ();
-}
-
+};
diff --git a/vivified/code/test/decompiler/hello-world.swf.expect b/vivified/code/test/decompiler/hello-world.swf.expect
index aa94505..926c7cf 100644
--- a/vivified/code/test/decompiler/hello-world.swf.expect
+++ b/vivified/code/test/decompiler/hello-world.swf.expect
@@ -4,5 +4,4 @@
 function () {
   trace ("Hello World!");
   loadMovie ("fscommand:quit", "");
-}
-
+};
diff --git a/vivified/code/test/decompiler/if-nested.swf.expect b/vivified/code/test/decompiler/if-nested.swf.expect
index a4b332a..0dd0ce8 100644
--- a/vivified/code/test/decompiler/if-nested.swf.expect
+++ b/vivified/code/test/decompiler/if-nested.swf.expect
@@ -13,5 +13,4 @@ function () {
     else
       trace ("four");
   }
-}
-
+};
diff --git a/vivified/code/test/decompiler/if.swf.expect b/vivified/code/test/decompiler/if.swf.expect
index ae8a43b..9a77b9f 100644
--- a/vivified/code/test/decompiler/if.swf.expect
+++ b/vivified/code/test/decompiler/if.swf.expect
@@ -11,5 +11,4 @@ function () {
   if (!true)
     trace ("Goodbye cruel world");
   loadMovie ("fscommand:quit", "");
-}
-
+};
diff --git a/vivified/code/test/decompiler/loop-empty.swf.expect b/vivified/code/test/decompiler/loop-empty.swf.expect
index 79326de..649e8d5 100644
--- a/vivified/code/test/decompiler/loop-empty.swf.expect
+++ b/vivified/code/test/decompiler/loop-empty.swf.expect
@@ -4,5 +4,4 @@
 function () {
   for (;;)
     ;
-}
-
+};
diff --git a/vivified/code/test/decompiler/loop-infinite.swf.expect b/vivified/code/test/decompiler/loop-infinite.swf.expect
index 23e8642..2efe78b 100644
--- a/vivified/code/test/decompiler/loop-infinite.swf.expect
+++ b/vivified/code/test/decompiler/loop-infinite.swf.expect
@@ -4,5 +4,4 @@
 function () {
   for (;;)
     trace (undefined);
-}
-
+};
diff --git a/vivified/code/test/decompiler/loop-nested.swf.expect b/vivified/code/test/decompiler/loop-nested.swf.expect
index eabc878..0af8f05 100644
--- a/vivified/code/test/decompiler/loop-nested.swf.expect
+++ b/vivified/code/test/decompiler/loop-nested.swf.expect
@@ -5,5 +5,4 @@ function () {
   while (5 < i)
     while (j < 10 * -1)
       trace ("Hello");
-}
-
+};
diff --git a/vivified/code/test/decompiler/simple-loop.swf.expect b/vivified/code/test/decompiler/simple-loop.swf.expect
index f0a1bbf..464f632 100644
--- a/vivified/code/test/decompiler/simple-loop.swf.expect
+++ b/vivified/code/test/decompiler/simple-loop.swf.expect
@@ -4,5 +4,4 @@
 function () {
   while (false)
     trace ("Hello World!");
-}
-
+};


More information about the Swfdec-commits mailing list