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. 0ac741e3a84486800c05


From: Sandro Santilli
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. 0ac741e3a84486800c05e82f7d63565d694f0fef
Date: Mon, 11 Oct 2010 20:26:32 +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  0ac741e3a84486800c05e82f7d63565d694f0fef (commit)
       via  adc4a45c8e834f77544d38c06d747c0a1253e672 (commit)
      from  1c18461ab14e3962bfd6b46a64326871d2b0ac71 (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=0ac741e3a84486800c05e82f7d63565d694f0fef


commit 0ac741e3a84486800c05e82f7d63565d694f0fef
Author: Sandro Santilli <address@hidden>
Date:   Mon Oct 11 22:25:30 2010 +0200

    Avoid string assingment to temporary variable

diff --git a/testsuite/misc-ming.all/XMLSocketTest.as 
b/testsuite/misc-ming.all/XMLSocketTest.as
index 1edaf3d..a90106c 100644
--- a/testsuite/misc-ming.all/XMLSocketTest.as
+++ b/testsuite/misc-ming.all/XMLSocketTest.as
@@ -63,8 +63,7 @@ function handleConnect(connectionStatus) {
 // Store data and send next lot.
 function handleData(data) {       
     receivedArray.push(data);
-    str = xmlArray[gc++];
-    myXML.send(str);
+    myXML.send(xmlArray[gc++]);
 };                                         
 
 function handleDisconnect() {              

http://git.savannah.gnu.org/cgit//commit/?id=adc4a45c8e834f77544d38c06d747c0a1253e672


commit adc4a45c8e834f77544d38c06d747c0a1253e672
Author: Sandro Santilli <address@hidden>
Date:   Mon Oct 11 22:25:02 2010 +0200

    Sleep 1/10 of a second rather than 0.5 (quicker testing)

diff --git a/testsuite/XmlSocketServer.pl b/testsuite/XmlSocketServer.pl
index 363668e..09ee6e9 100644
--- a/testsuite/XmlSocketServer.pl
+++ b/testsuite/XmlSocketServer.pl
@@ -33,7 +33,7 @@ while (@S = $O->can_read) {
             
                 # Sleep a bit before sending a reply to mimic web traffic
                 # (well, sort of).
-                Time::HiRes::sleep(0.5);
+                Time::HiRes::sleep(0.1);
                 print "XmlSocketServer: sending \"$i\" \n" if $verbose;
               
                 $i =~ s/\*NEWLINE\*/\n/g;

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

Summary of changes:
 testsuite/XmlSocketServer.pl             |    2 +-
 testsuite/misc-ming.all/XMLSocketTest.as |    3 +--
 2 files changed, 2 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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