Revision: 8000
http://armagetronad.svn.sourceforge.net/armagetronad/?rev=8000&view=rev
Author: z-man
Date: 2008-02-19 03:19:07 -0800 (Tue, 19 Feb 2008)
Log Message:
-----------
another adaption to Io changes. Strange, this worked at home before with the same Io version.
Modified Paths:
--------------
private/z-man/clio/tests/smartpointer.test/output.txt
private/z-man/clio/tests/smartpointer.test/test.cpp
Modified: private/z-man/clio/tests/smartpointer.test/output.txt
===================================================================
--- private/z-man/clio/tests/smartpointer.test/output.txt 2008-02-19 10:12:53 UTC (rev 7999)
+++ private/z-man/clio/tests/smartpointer.test/output.txt 2008-02-19 11:19:07 UTC (rev 8000)
@@ -1,6 +1,6 @@
-<<<< callGC := method( Range setRange(0,10000,1) foreach(n,n) )
-<<<< callGC := method( Range setRange(0,10000,1) foreach(n,n) )
+<<<< callGC := method( for(a,0,10000,a=a) )
+<<<< callGC := method( for(a,0,10000,a=a) )
<<<< callGC
<<<< callGC
<<<< SmartPointerTest setStaticTarget( SmartPointerTest clone )
Modified: private/z-man/clio/tests/smartpointer.test/test.cpp
===================================================================
--- private/z-man/clio/tests/smartpointer.test/test.cpp 2008-02-19 10:12:53 UTC (rev 7999)
+++ private/z-man/clio/tests/smartpointer.test/test.cpp 2008-02-19 11:19:07 UTC (rev 8000)
@@ -63,8 +63,9 @@
// state2.SetCollector( state.Self()->collector );
- TestString( state, "callGC := method( Range setRange(0,10000,1) foreach(n,n) )" );
- TestString( state2, "callGC := method( Range setRange(0,10000,1) foreach(n,n) )" );
+ char const * loop = "callGC := method( for(a,0,10000,a=a) )";
+ TestString( state, loop );
+ TestString( state2, loop );
TestString( state, "callGC" );
TestString( state2, "callGC" );
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|