CVSROOT: /sources/gnash Module name: gnash Changes by: Sandro Santilli <strk> 07/09/26 21:03:03
Modified files: . : ChangeLog testsuite/misc-swfc.all: action_execution_order_test10.sc action_execution_order_test12.sc edittext_test1.sc movieclip_destruction_test2.sc movieclip_destruction_test3.sc movieclip_destruction_test4.sc soft_reference_test1.sc Log message: * testsuite/misc-swfc.all/: action_execution_order_test10.sc, action_execution_order_test12.sc, edittext_test1.sc, movieclip_destruction_test2.sc, movieclip_destruction_test3.sc, movieclip_destruction_test4.sc, soft_reference_test1.sc: Add expected number of tests run in the totals() call. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.4430&r2=1.4431 http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/misc-swfc.all/action_execution_order_test10.sc?cvsroot=gnash&r1=1.6&r2=1.7 http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/misc-swfc.all/action_execution_order_test12.sc?cvsroot=gnash&r1=1.1&r2=1.2 http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/misc-swfc.all/edittext_test1.sc?cvsroot=gnash&r1=1.6&r2=1.7 http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/misc-swfc.all/movieclip_destruction_test2.sc?cvsroot=gnash&r1=1.9&r2=1.10 http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/misc-swfc.all/movieclip_destruction_test3.sc?cvsroot=gnash&r1=1.3&r2=1.4 http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/misc-swfc.all/movieclip_destruction_test4.sc?cvsroot=gnash&r1=1.5&r2=1.6 http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/misc-swfc.all/soft_reference_test1.sc?cvsroot=gnash&r1=1.7&r2=1.8 Patches: Index: ChangeLog =================================================================== RCS file: /sources/gnash/gnash/ChangeLog,v retrieving revision 1.4430 retrieving revision 1.4431 diff -u -b -r1.4430 -r1.4431 --- ChangeLog 26 Sep 2007 20:52:02 -0000 1.4430 +++ ChangeLog 26 Sep 2007 21:03:02 -0000 1.4431 @@ -1,5 +1,13 @@ 2007-09-26 Sandro Santilli <[EMAIL PROTECTED]> + * testsuite/misc-swfc.all/: action_execution_order_test10.sc, + action_execution_order_test12.sc, edittext_test1.sc, + movieclip_destruction_test2.sc, movieclip_destruction_test3.sc, + movieclip_destruction_test4.sc, soft_reference_test1.sc: + Add expected number of tests run in the totals() call. + +2007-09-26 Sandro Santilli <[EMAIL PROTECTED]> + * server/as_environment.cpp (get_variable_raw): don't handle _root and _levelX in any special way, they are just sprite members ! * server/sprite_instance.cpp (get_member): _root doesn't exist if Index: testsuite/misc-swfc.all/action_execution_order_test10.sc =================================================================== RCS file: /sources/gnash/gnash/testsuite/misc-swfc.all/action_execution_order_test10.sc,v retrieving revision 1.6 retrieving revision 1.7 diff -u -b -r1.6 -r1.7 --- testsuite/misc-swfc.all/action_execution_order_test10.sc 24 Sep 2007 07:52:48 -0000 1.6 +++ testsuite/misc-swfc.all/action_execution_order_test10.sc 26 Sep 2007 21:03:02 -0000 1.7 @@ -215,7 +215,7 @@ .frame 15 .action: - totals(); + totals(5); stop(); .end Index: testsuite/misc-swfc.all/action_execution_order_test12.sc =================================================================== RCS file: /sources/gnash/gnash/testsuite/misc-swfc.all/action_execution_order_test12.sc,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- testsuite/misc-swfc.all/action_execution_order_test12.sc 18 Sep 2007 10:30:40 -0000 1.1 +++ testsuite/misc-swfc.all/action_execution_order_test12.sc 26 Sep 2007 21:03:03 -0000 1.2 @@ -175,7 +175,7 @@ // mc2.mc21, mc1.mc11 and mc1.mc12 were unloaded when loop back. // mc1 and mc2 were unloaded by RemoveObject2 tags. check_equals(_root.unloadOrder, '0+1+2+3+4+5+'); - totals(); + totals(13); stop(); .end Index: testsuite/misc-swfc.all/edittext_test1.sc =================================================================== RCS file: /sources/gnash/gnash/testsuite/misc-swfc.all/edittext_test1.sc,v retrieving revision 1.6 retrieving revision 1.7 diff -u -b -r1.6 -r1.7 --- testsuite/misc-swfc.all/edittext_test1.sc 20 Sep 2007 15:44:41 -0000 1.6 +++ testsuite/misc-swfc.all/edittext_test1.sc 26 Sep 2007 21:03:03 -0000 1.7 @@ -152,7 +152,7 @@ .frame 15 .action: - totals(); + totals(31); stop(); .end Index: testsuite/misc-swfc.all/movieclip_destruction_test2.sc =================================================================== RCS file: /sources/gnash/gnash/testsuite/misc-swfc.all/movieclip_destruction_test2.sc,v retrieving revision 1.9 retrieving revision 1.10 diff -u -b -r1.9 -r1.10 --- testsuite/misc-swfc.all/movieclip_destruction_test2.sc 7 Sep 2007 11:56:07 -0000 1.9 +++ testsuite/misc-swfc.all/movieclip_destruction_test2.sc 26 Sep 2007 21:03:03 -0000 1.10 @@ -185,7 +185,7 @@ .frame 6 .action: - totals(); + totals(52); stop(); .end Index: testsuite/misc-swfc.all/movieclip_destruction_test3.sc =================================================================== RCS file: /sources/gnash/gnash/testsuite/misc-swfc.all/movieclip_destruction_test3.sc,v retrieving revision 1.3 retrieving revision 1.4 diff -u -b -r1.3 -r1.4 --- testsuite/misc-swfc.all/movieclip_destruction_test3.sc 4 Sep 2007 10:19:02 -0000 1.3 +++ testsuite/misc-swfc.all/movieclip_destruction_test3.sc 26 Sep 2007 21:03:03 -0000 1.4 @@ -123,7 +123,7 @@ check_equals(typeof(nestedMovieClip), 'undefined'); check_equals(_root.as_order, "0+1+2+"); stop(); - totals(); + totals(9); .end Index: testsuite/misc-swfc.all/movieclip_destruction_test4.sc =================================================================== RCS file: /sources/gnash/gnash/testsuite/misc-swfc.all/movieclip_destruction_test4.sc,v retrieving revision 1.5 retrieving revision 1.6 diff -u -b -r1.5 -r1.6 --- testsuite/misc-swfc.all/movieclip_destruction_test4.sc 6 Sep 2007 10:12:20 -0000 1.5 +++ testsuite/misc-swfc.all/movieclip_destruction_test4.sc 26 Sep 2007 21:03:03 -0000 1.6 @@ -173,7 +173,7 @@ check_equals(typeof(brother2), 'movieclip'); check_equals(typeof(brother3), 'undefined'); stop(); - totals(); + totals(19); .end .end Index: testsuite/misc-swfc.all/soft_reference_test1.sc =================================================================== RCS file: /sources/gnash/gnash/testsuite/misc-swfc.all/soft_reference_test1.sc,v retrieving revision 1.7 retrieving revision 1.8 diff -u -b -r1.7 -r1.8 --- testsuite/misc-swfc.all/soft_reference_test1.sc 29 Aug 2007 12:31:09 -0000 1.7 +++ testsuite/misc-swfc.all/soft_reference_test1.sc 26 Sep 2007 21:03:03 -0000 1.8 @@ -163,7 +163,7 @@ // as of creation time. check(mcRef == _level0.mc1); - _root.totals(); + _root.totals(38); stop(); .end _______________________________________________ Gnash-commit mailing list Gnash-commit@gnu.org http://lists.gnu.org/mailman/listinfo/gnash-commit