[Mono-dev] Increasing Sleep() time in test thread6.cs

Ian Dichkovsky ianpro at gmail.com
Fri Mar 20 10:46:24 EDT 2009


Hi,

We are now doing mono port to MIPS n32 & 64 architecture.

During porting we got failed test thread6.exe. It happens due to low
Sleep() time and relatively low performance of our test node.
In order to fix this test we increased Sleep() time to 1000.

Could someone apply this change and submit it to svn ?

===================================================

Index: mono/tests/thread6.cs
===================================================================
--- mono/tests/thread6.cs       (revision 129872)
+++ mono/tests/thread6.cs       (working copy)
@@ -108,7 +108,7 @@

                t1.Start();

-               Thread.Sleep (300);
+               Thread.Sleep (1000);
                t1.Abort ("STATETEST");

                t1.Join ();

===================================================

Thanks,
Ian


More information about the Mono-devel-list mailing list