Enabling temporarily disabled tests that call ReadOnlySpan indexer (#15546)
authorAhson Khan <ahkha@microsoft.com>
Sat, 16 Dec 2017 00:23:16 +0000 (16:23 -0800)
committerGitHub <noreply@github.com>
Sat, 16 Dec 2017 00:23:16 +0000 (16:23 -0800)
tests/src/CoreMangLib/system/span/BasicSpanTest.cs
tests/src/JIT/CheckProjects/CheckProjects.cs
tests/src/JIT/Performance/CodeQuality/Span/Indexer.cs
tests/src/JIT/Performance/CodeQuality/Span/SpanBench.cs
tests/src/JIT/Regression/JitBlue/DevDiv_461649/DevDiv_461649.cs
tests/src/JIT/superpmi/superpmicollect.cs

index d7208e6..83ab6b3 100644 (file)
@@ -740,9 +740,9 @@ class My
     static void AssertEqualContent(string text, ReadOnlySpan<char> span)
     {
         AssertEqual(text.Length, span.Length);
-        /*for (int i = 0; i < text.Length; i++)
+        for (int i = 0; i < text.Length; i++)
         {
             AssertEqual(text[i], span[i]);
-        }*/
+        }
     }
 }
index 04ef919..28cc10d 100644 (file)
@@ -24,8 +24,6 @@ internal class ScanProjectFiles
 
     private static int Main(string[] args)
     {
-        // TEMPORARILY DISABLING - see issue #15089
-        return 100;
         // If invoked w/o args, locate jit test project dir from
         // CORE_ROOT, and scan only.
         //
index 81706b8..63f59e0 100644 (file)
@@ -917,8 +917,6 @@ namespace Span
 
         public static int Main(string[] args)
         {
-            // TEMPORARILY DISABLING - see issue #15089
-            return 100;
             if (args.Length > 0)
             {
                 if (args[0].Equals("-bench"))
index 31f71b4..d0ccbc5 100644 (file)
@@ -1053,8 +1053,6 @@ namespace Span
 
         public static int Main(string[] args)
         {
-            // TEMPORARILY DISABLING - see issue #15089
-            return 100;
             // When we call into Invoke, it'll need to know this isn't xunit-perf running
             IsXunitInvocation = false;
 
index 76b416c..0265f43 100644 (file)
@@ -24,8 +24,7 @@ namespace XSLTest
             string inputXml = "Input.xml";
             string inputXsl = "Transform.xsl";
 
-            // TEMPORARILY DISABLING - see issue #15089
-            return 100; //DotNetXslCompiledTransform(inputXml, inputXsl);
+            return DotNetXslCompiledTransform(inputXml, inputXsl);
         }
 
         private static int DotNetXslCompiledTransform(string inputXml, string inputXsl)
index d1814a1..8faec4c 100644 (file)
@@ -657,9 +657,6 @@ namespace SuperPMICollection
             string runProgramArguments = null;
             string tempPath = null;
 
-            // TEMPORARILY DISABLING - see issue #15089
-            return 100;
-
             // Parse arguments
             if (args.Length > 0)
             {