gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash/testsuite/actionscript.all LocalConnectio...


From: Rob Savoye
Subject: [Gnash-commit] gnash/testsuite/actionscript.all LocalConnectio...
Date: Mon, 23 Oct 2006 13:36:02 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Rob Savoye <rsavoye>    06/10/23 13:36:02

Modified files:
        testsuite/actionscript.all: LocalConnection.as 

Log message:
        Always use pass/fail instead of trace.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/actionscript.all/LocalConnection.as?cvsroot=gnash&r1=1.5&r2=1.6

Patches:
Index: LocalConnection.as
===================================================================
RCS file: /sources/gnash/gnash/testsuite/actionscript.all/LocalConnection.as,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- LocalConnection.as  22 Oct 2006 01:00:54 -0000      1.5
+++ LocalConnection.as  23 Oct 2006 13:36:02 -0000      1.6
@@ -98,17 +98,17 @@
 // NOTE: This test will fail if a shared memory segment of the same
 // name exists. So the first time it'll pass, then it'll fail.
 if ((tmp.getname() == "/lc_test") && (ret == true)) {
-       trace("PASSED: LocalConnection::connect()");
+       pass("LocalConnection::connect()");
 } else {       
-       trace("FAILED: LocalConnection::connect()");
+       fail("LocalConnection::connect()");
 }
 
 // Close the connection, and then check the state
 tmp.close();
 if (tmp.exists() == false) {
-       trace("PASSED: LocalConnection::close()");
+       pass("LocalConnection::close()");
 } else {
-       trace("FAILED: LocalConnection::close()");
+       fail("LocalConnection::close()");
 }
 
 totals();




reply via email to

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