gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-


From: Rob Savoye
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-1618-gb482bd6
Date: Sat, 02 Mar 2013 17:49:02 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnash".

The branch, master has been updated
       via  b482bd62b3ccbfe6b0608af24d7e8839df8e20d5 (commit)
      from  79def9936d1b225b49e0451cfac8123f6b04262d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit//commit/?id=b482bd62b3ccbfe6b0608af24d7e8839df8e20d5


commit b482bd62b3ccbfe6b0608af24d7e8839df8e20d5
Author: Rob Savoye <address@hidden>
Date:   Sat Mar 2 10:48:36 2013 -0700

    revert check_equals for new properties and go back to treating these as 
xfails

diff --git a/testsuite/actionscript.all/NetStream.as 
b/testsuite/actionscript.all/NetStream.as
index 78c73f1..b5c3161 100644
--- a/testsuite/actionscript.all/NetStream.as
+++ b/testsuite/actionscript.all/NetStream.as
@@ -52,26 +52,26 @@ check_equals ( typeof(netstreamObj), 'object' );
  * when the NetStream connection is established.             *
  *                                                           */
 
-check(! NetStream.prototype.hasOwnProperty('currentFps'));
+xcheck(! NetStream.prototype.hasOwnProperty('currentFps'));
 check(! netstreamObj.hasOwnProperty('currentFps'));
 
-check(! NetStream.prototype.hasOwnProperty('bufferLength'));
+xcheck(! NetStream.prototype.hasOwnProperty('bufferLength'));
 check(! netstreamObj.hasOwnProperty('bufferLength'));
 
-check(! NetStream.prototype.hasOwnProperty('bufferTime'));
+xcheck(! NetStream.prototype.hasOwnProperty('bufferTime'));
 check(! netstreamObj.hasOwnProperty('bufferTime'));
 
-check(! NetStream.prototype.hasOwnProperty('liveDelay'));
+xcheck(! NetStream.prototype.hasOwnProperty('liveDelay'));
 check(! netstreamObj.hasOwnProperty('liveDelay'));
 
-check(! NetStream.prototype.hasOwnProperty('time'));
+xcheck(! NetStream.prototype.hasOwnProperty('time'));
 check(! netstreamObj.hasOwnProperty('time'));
 
 /* Added in SWF7 (still apply to SWF6) */
-check(! NetStream.prototype.hasOwnProperty('bytesLoaded'));
+xcheck(! NetStream.prototype.hasOwnProperty('bytesLoaded'));
 check(! netstreamObj.hasOwnProperty('bytesLoaded'));
 
-check(! NetStream.prototype.hasOwnProperty('bytesTotal'));
+xcheck(! NetStream.prototype.hasOwnProperty('bytesTotal'));
 check(! netstreamObj.hasOwnProperty('bytesTotal'));
 
 
@@ -154,41 +154,42 @@ check_equals(typeof(netstreamObj.onMetaData), 'string');
 // currentFps (read-only)
 check_equals ( typeof(netstreamObj.currentFps), 'undefined' );
 netstreamObj.currentFps = 'string';
-check_equals ( typeof(netstreamObj.currentFps), 'string' );
+xcheck_equals ( typeof(netstreamObj.currentFps), 'string' );
 netstreamObj.currentFps = false;
-check_equals ( typeof(netstreamObj.currentFps), 'boolean' );
+xcheck_equals ( typeof(netstreamObj.currentFps), 'boolean' );
 
 // bufferLength (read-only)
-check_equals ( typeof(netstreamObj.bufferLength), 'undefined' );
+xcheck_equals ( typeof(netstreamObj.bufferLength), 'undefined' );
 netstreamObj.bufferLength = 'string';
-check_equals ( typeof(netstreamObj.bufferLength), 'string' );
+
+xcheck_equals ( typeof(netstreamObj.bufferLength), 'string' );
 netstreamObj.bufferLength = false;
-check_equals ( typeof(netstreamObj.bufferLength), 'boolean' );
+xcheck_equals ( typeof(netstreamObj.bufferLength), 'boolean' );
 
 // bufferTime
-check_equals ( typeof(netstreamObj.bufferTime), 'undefined' );
+xcheck_equals ( typeof(netstreamObj.bufferTime), 'undefined' );
 netstreamObj.setBufferTime(10);
-check_equals(netstreamObj.bufferTime, NULL);
+xcheck_equals(netstreamObj.bufferTime, NULL);
 netstreamObj.bufferTime = 20;
-check_equals(netstreamObj.bufferTime, 20);
+xcheck_equals(netstreamObj.bufferTime, 20);
 netstreamObj.setBufferTime = 30;
-check_equals(netstreamObj.bufferTime, 20);
+xcheck_equals(netstreamObj.bufferTime, 20);
 netstreamObj.setBufferTime(false);
-check_equals(netstreamObj.bufferTime, 20);
+xcheck_equals(netstreamObj.bufferTime, 20);
 netstreamObj.setBufferTime('string');
-check_equals(netstreamObj.bufferTime, 20);
-xnetstreamObj.setBufferTime('5');
-check_equals(netstreamObj.bufferTime, 20);
+xcheck_equals(netstreamObj.bufferTime, 20);
+netstreamObj.setBufferTime('5');
+xcheck_equals(netstreamObj.bufferTime, 20);
 
 // liveDelay (read-only)
 check_equals ( typeof(netstreamObj.liveDelay), 'undefined' );
 netstreamObj.liveDelay = 'string';
-check_equals ( typeof(netstreamObj.liveDelay), 'string' );
+xcheck_equals ( typeof(netstreamObj.liveDelay), 'string' );
 
 // time (read-only)
-check_equals ( typeof(netstreamObj.time), 'undefined' );
+xcheck_equals ( typeof(netstreamObj.time), 'undefined' );
 netstreamObj.time = 'string';
-check_equals ( typeof(netstreamObj.time), 'string' );
+xcheck_equals ( typeof(netstreamObj.timxe), 'string' );
 
 
 /* Two properties added in SWF7 */

-----------------------------------------------------------------------

Summary of changes:
 testsuite/actionscript.all/NetStream.as |   47 ++++++++++++++++---------------
 1 files changed, 24 insertions(+), 23 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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