initial checkin
authorClaus Gittinger <cg@exept.de>
Tue, 28 Sep 2004 16:11:17 +0200
changeset 253 c9431a7f3a15
parent 252 1005bdeab488
child 254 2e394c224ff1
initial checkin
RegressionTests__GCTest.st
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/RegressionTests__GCTest.st	Tue Sep 28 16:11:17 2004 +0200
@@ -0,0 +1,32 @@
+"{ Package: 'exept:regression' }"
+
+"{ NameSpace: RegressionTests }"
+
+TestCase subclass:#GCTest
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'tests-Regression'
+!
+
+
+!GCTest methodsFor:'tests'!
+
+testRemSetOverflow1
+    |arr|
+
+    arr := Array new:100000.
+    1 to:100000 do:[:i |
+        arr at:i put:Object new.
+    ].
+
+    "
+     self new testRemSetOverflow1
+    "
+! !
+
+!GCTest class methodsFor:'documentation'!
+
+version
+    ^ '$Header$'
+! !