From: Mark Probst Date: Tue, 5 Mar 2013 20:55:42 +0000 (-0800) Subject: [tests] Init Random with defined value in GC descriptor tests. X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=8a1eca2e78a1d2b71584b52ce769312438982107;p=mono.git [tests] Init Random with defined value in GC descriptor tests. So we can reproduce bugs and compare time/space if we want. --- diff --git a/mono/tests/gc-descriptors/descriptor-tests-driver.cs b/mono/tests/gc-descriptors/descriptor-tests-driver.cs index 93d72d59424..60787381356 100644 --- a/mono/tests/gc-descriptors/descriptor-tests-driver.cs +++ b/mono/tests/gc-descriptors/descriptor-tests-driver.cs @@ -2,7 +2,7 @@ public class DescriptorTest { public static void Main () { - var r = new Random (); + var r = new Random (31415); var objs = new object [9]; var which = 0; var last = new Filler [Bitmaps.NumWhich];