X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mono%2Ftests%2Fbug-10127.cs;h=389616e4088c0929a40d3abbf37bb2515f18094c;hb=HEAD;hp=4662ff6fa8054d9a7b634f068a86550f53df88de;hpb=0146859e63468733659e108f7e8e4255e9ae0027;p=mono.git diff --git a/mono/tests/bug-10127.cs b/mono/tests/bug-10127.cs index 4662ff6fa80..389616e4088 100644 --- a/mono/tests/bug-10127.cs +++ b/mono/tests/bug-10127.cs @@ -33,7 +33,7 @@ namespace WeakReferenceTest } public class Tester { - static readonly int seed = unchecked(DateTime.Now.Ticks.GetHashCode()); + public static readonly int seed = unchecked(DateTime.Now.Ticks.GetHashCode()); Random rand = new Random(seed); @@ -88,6 +88,7 @@ namespace WeakReferenceTest public static void Main (string[] args) { Console.WriteLine("Starting cache testers"); + Console.WriteLine("Thread seed: " + Tester.seed); List testers = new List(); for (int count = 0; count < 10; count++) { testers.Add(new Tester());