#BUGFIX by Stefan Reise
authorsr
Fri, 03 May 2019 10:02:39 +0200
changeset 2225 72fb9427de5b
parent 2224 b00d766d6c9d
child 2226 3307d5dcc624
#BUGFIX by Stefan Reise class: RegressionTests::FileStreamTest changed: #testRead3
RegressionTests__FileStreamTest.st
--- a/RegressionTests__FileStreamTest.st	Thu May 02 13:42:56 2019 +0200
+++ b/RegressionTests__FileStreamTest.st	Fri May 03 10:02:39 2019 +0200
@@ -268,7 +268,10 @@
         p interruptWith:[count := count + 1].
     ].
     self assert:errorOccured isNil.
-    self assert:count > 50. "/ at least 50 times interrupted...
+
+    "sr: must reduce to 25 because the new test machines run to much faster in IO"
+    self assert:count > 25. "/ at least 25 times interrupted...
+"/    self assert:count > 50. "/ at least 50 times interrupted...
     "/ Transcript printf:'read file %d times; interrupted %d times\n' with:nLoop with:count.
 
     "
@@ -276,7 +279,7 @@
     "
 
     "Modified: / 12-08-1998 / 13:42:13 / cg"
-    "Modified: / 02-05-2019 / 13:34:09 / Stefan Reise"
+    "Modified: / 03-05-2019 / 10:02:20 / Stefan Reise"
 !
 
 testRewrite1