removed unnecessary WriteLine form a test (#25460)
authorVladimir Sadov <vsadov@microsoft.com>
Thu, 27 Jun 2019 23:16:07 +0000 (16:16 -0700)
committerGitHub <noreply@github.com>
Thu, 27 Jun 2019 23:16:07 +0000 (16:16 -0700)
tests/src/GC/Regressions/v3.0/25252/25252.cs

index 9245423..d9604b9 100644 (file)
@@ -9,8 +9,7 @@ class Program
     static int Main()
     {
         var matrix = new double[128 * 128];
-
-        Console.WriteLine("SIGSEGV upcoming");
+        
         GC.Collect(GC.MaxGeneration);
 
         GC.KeepAlive(matrix);