gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash ChangeLog testsuite/actionscript.all/Syst...


From: Benjamin Wolsey
Subject: [Gnash-commit] gnash ChangeLog testsuite/actionscript.all/Syst...
Date: Fri, 11 Apr 2008 09:04:24 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Benjamin Wolsey <bwy>   08/04/11 09:04:24

Modified files:
        .              : ChangeLog 
        testsuite/actionscript.all: System.as 

Log message:
        Correct expected results.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.6249&r2=1.6250
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/actionscript.all/System.as?cvsroot=gnash&r1=1.21&r2=1.22

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.6249
retrieving revision 1.6250
diff -u -b -r1.6249 -r1.6250
--- ChangeLog   11 Apr 2008 08:43:41 -0000      1.6249
+++ ChangeLog   11 Apr 2008 09:04:23 -0000      1.6250
@@ -1,5 +1,9 @@
 2008-04-11 Benjamin Wolsey <address@hidden>
 
+       * testsuite/actionscript.all/System.as: correct expected results.
+
+2008-04-11 Benjamin Wolsey <address@hidden>
+
        * server/asobj/System.cpp: add hasTLS property, reorder server string
          to match pp and document.
 

Index: testsuite/actionscript.all/System.as
===================================================================
RCS file: /sources/gnash/gnash/testsuite/actionscript.all/System.as,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -b -r1.21 -r1.22
--- testsuite/actionscript.all/System.as        11 Apr 2008 08:35:00 -0000      
1.21
+++ testsuite/actionscript.all/System.as        11 Apr 2008 09:04:24 -0000      
1.22
@@ -21,7 +21,7 @@
 // execute it like this gnash -1 -r 0 -v out.swf
 
 
-rcsid="$Id: System.as,v 1.21 2008/04/11 08:35:00 bwy Exp $";
+rcsid="$Id: System.as,v 1.22 2008/04/11 09:04:24 bwy Exp $";
 #include "check.as"
 
 check_equals(typeof(System), 'object');
@@ -86,10 +86,10 @@
 check_equals(typeof(System.capabilities.avHardwareDisable), 'boolean');
 
 // Not present on Linux player version 9,0,115,0, is (?) on windows.
-xcheck_equals(typeof(System.capabilities.hasIME), 'boolean');
+check_equals(typeof(System.capabilities.hasIME), 'boolean');
 
 // Added in Player version 9.
-xcheck_equals(typeof(System.capabilities.hasTLS), 'boolean');
+check_equals(typeof(System.capabilities.hasTLS), 'boolean');
 
 #if OUTPUT_VERSION >= 6
 check(this.hasOwnProperty("$version"));
@@ -103,9 +103,9 @@
 // Directs the player to use Latin1 instead of unicode.
 xcheck_equals(typeof(System.useCodepage), 'boolean');
 System.useCodepage = false;
-xcheck_equals(System.useCodepage, false);
+check_equals(System.useCodepage, false);
 System.useCodepage = true;
-xcheck_equals(System.useCodepage, true);
+check_equals(System.useCodepage, true);
 
 // Pops up settings dialogue box with variable settings.
 // System.showSettings(0): camera / microphone access;
@@ -114,10 +114,9 @@
 // 3: microphone.
 check_equals(typeof(System.showSettings), 'function');
 
-
-check_equals(typeof(System.Product), 'function');
-check (System.Product.prototype.hasOwnProperty('launch'));
-check (System.Product.prototype.hasOwnProperty('download'));
+xcheck_equals(typeof(System.Product), 'function');
+xcheck (System.Product.prototype.hasOwnProperty('launch'));
+xcheck (System.Product.prototype.hasOwnProperty('download'));
 
 p = new System.Product("whatisthis");
 xcheck_equals(typeof(p), 'object');




reply via email to

[Prev in Thread] Current Thread [Next in Thread]