[wasm] Enable stack tests that now work on browser-wasm (#40206)
authorLarry Ewing <lewing@microsoft.com>
Fri, 31 Jul 2020 18:18:32 +0000 (13:18 -0500)
committerGitHub <noreply@github.com>
Fri, 31 Jul 2020 18:18:32 +0000 (13:18 -0500)
* Enable stack tests that now work on browser-wasm

src/libraries/System.Diagnostics.StackTrace/tests/StackFrameExtensionsTests.cs
src/libraries/System.Diagnostics.StackTrace/tests/StackFrameTests.cs
src/libraries/System.Diagnostics.StackTrace/tests/StackTraceSymbolsTests.cs
src/libraries/System.Diagnostics.StackTrace/tests/StackTraceTests.cs
src/libraries/System.Diagnostics.TraceSource/tests/TraceEventCacheClassTests.cs
src/libraries/System.Diagnostics.TraceSource/tests/TraceListenerClassTests.cs
src/libraries/System.Runtime.Extensions/tests/System/Environment.StackTrace.cs

index aaecae6..a857284 100644 (file)
@@ -6,7 +6,6 @@ using Xunit;
 
 namespace System.Diagnostics.Tests
 {
-    [ActiveIssue("https://github.com/dotnet/runtime/issues/39223", TestPlatforms.Browser)]
     public class StackFrameExtensionsTests
     {
         public static IEnumerable<object[]> StackFrame_TestData()
index 445ae86..e80c6b9 100644 (file)
@@ -8,7 +8,6 @@ using Xunit;
 
 namespace System.Diagnostics.Tests
 {
-    [ActiveIssue("https://github.com/dotnet/runtime/issues/39223", TestPlatforms.Browser)]
     public class StackFrameTests
     {
         [Fact]
index ba291ae..8026935 100644 (file)
@@ -7,7 +7,7 @@ using Xunit;
 
 namespace System.Diagnostics.SymbolStore.Tests
 {
-    [ActiveIssue("https://github.com/dotnet/runtime/issues/39223", TestPlatforms.Browser)]
+    [ActiveIssue("https://github.com/dotnet/runtime/issues/39650", TestPlatforms.Browser)]
     public class StackTraceSymbolsTests
     {
         [Fact]
index 67119f9..894374b 100644 (file)
@@ -29,7 +29,6 @@ namespace System.Diagnostics
 
 namespace System.Diagnostics.Tests
 {
-    [ActiveIssue("https://github.com/dotnet/runtime/issues/39223", TestPlatforms.Browser)]
     public class StackTraceTests
     {
         [Fact]
index 680f8b6..6933d03 100644 (file)
@@ -48,7 +48,6 @@ namespace System.Diagnostics.TraceSourceTests
         }
 
         [Fact]
-        [ActiveIssue("https://github.com/dotnet/runtime/issues/39223", TestPlatforms.Browser)]
         public void CallstackTest_NotEmpty()
         {
             var cache = new TraceEventCache();
@@ -56,7 +55,6 @@ namespace System.Diagnostics.TraceSourceTests
         }
 
         [Fact]
-        [ActiveIssue("https://github.com/dotnet/runtime/issues/39223", TestPlatforms.Browser)]
         public void CallstackTest_ContainsExpectedFrames()
         {
             var cache = new TraceEventCache();
index fbe1193..08668fd 100644 (file)
@@ -313,7 +313,6 @@ namespace System.Diagnostics.TraceSourceTests
         }
 
         [Fact]
-        [ActiveIssue("https://github.com/dotnet/runtime/issues/39223", TestPlatforms.Browser)]
         [MethodImpl(MethodImplOptions.NoInlining)]
         public void WriteFooterTest_Callstack()
         {
index 4077019..e3fa2c3 100644 (file)
@@ -68,7 +68,6 @@ namespace System.Tests
         }
 
         [Fact]
-        [ActiveIssue("https://github.com/dotnet/runtime/issues/39223", TestPlatforms.Browser)]
         public void StackTraceDoesNotStartWithInternalFrame()
         {
              string stackTrace = Environment.StackTrace;