src/stx_libjava.st
branchjk_new_structure
changeset 861 fab84333fa2e
parent 860 7c3f4b090534
child 862 6f936674d753
--- a/src/stx_libjava.st	Tue Jun 21 16:39:57 2011 +0000
+++ b/src/stx_libjava.st	Tue Jun 21 17:17:24 2011 +0000
@@ -42,8 +42,10 @@
 
 testSuite
 
-    | suite javaTestCases |
+    | suite javaTestCases stTests |
     suite := super testSuite.
+	stTests := suite tests copy.
+	suite tests removeAll.
     JavaTestsLoader load.
 
     javaTestCases := OrderedCollection new.
@@ -69,6 +71,7 @@
         [:t :i|
         Stdout nextPutAll: i printString; space; nextPutAll: t printString; cr].
 
+	suite tests addAll: stTests.
     ^suite
 
     "
@@ -402,7 +405,7 @@
     "Return a SVN revision number of myself.
      This number is updated after a commit"
 
-    ^ "$SVN-Revision:"'1204'"$"
+    ^ "$SVN-Revision:"'1205M'"$"
 ! !
 
 !stx_libjava class methodsFor:'file generation'!