-
Notifications
You must be signed in to change notification settings - Fork 5.2k
[mono][browser] Enable failing tests in smoke tests #117585
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
Enables additional smoke tests for browser targets in the Mono runtime by adding four previously failing test projects to the browser smoke test suite.
- Adds four test projects to browser smoke tests that were previously excluded due to failures
- Expands test coverage for System.Memory, System.Text.RegularExpressions, System.IO.UnmanagedMemoryStream, and System.Diagnostics.StackTrace on browser platform
<SmokeTestProject Include="$(MSBuildThisFileDirectory)System.Runtime.Intrinsics\tests\System.Runtime.Intrinsics.Tests.csproj" /> | ||
<SmokeTestProject Include="$(MSBuildThisFileDirectory)System.Memory\tests\System.Memory.Tests.csproj" /> | ||
<SmokeTestProject Include="$(MSBuildThisFileDirectory)System.Text.RegularExpressions\tests\FunctionalTests\System.Text.RegularExpressions.Tests.csproj" /> | ||
<SmokeTestProject Include="$(MSBuildThisFileDirectory)System.Runtime/tests/System.IO.UnmanagedMemoryStream.Tests/System.IO.UnmanagedMemoryStream.Tests.csproj" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] This path uses forward slashes inconsistently compared to other entries. Consider using backslashes like the other entries for consistency: System.Runtime\tests\System.IO.UnmanagedMemoryStream.Tests\System.IO.UnmanagedMemoryStream.Tests.csproj
<SmokeTestProject Include="$(MSBuildThisFileDirectory)System.Runtime/tests/System.IO.UnmanagedMemoryStream.Tests/System.IO.UnmanagedMemoryStream.Tests.csproj" /> | |
<SmokeTestProject Include="$(MSBuildThisFileDirectory)System.Runtime\tests\System.IO.UnmanagedMemoryStream.Tests\System.IO.UnmanagedMemoryStream.Tests.csproj" /> |
Copilot uses AI. Check for mistakes.
<SmokeTestProject Include="$(MSBuildThisFileDirectory)System.Memory\tests\System.Memory.Tests.csproj" /> | ||
<SmokeTestProject Include="$(MSBuildThisFileDirectory)System.Text.RegularExpressions\tests\FunctionalTests\System.Text.RegularExpressions.Tests.csproj" /> | ||
<SmokeTestProject Include="$(MSBuildThisFileDirectory)System.Runtime/tests/System.IO.UnmanagedMemoryStream.Tests/System.IO.UnmanagedMemoryStream.Tests.csproj" /> | ||
<SmokeTestProject Include="$(MSBuildThisFileDirectory)System.Diagnostics.StackTrace/tests/System.Diagnostics.StackTrace.Tests.csproj" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] This path uses forward slashes inconsistently compared to other entries. Consider using backslashes like the other entries for consistency: System.Diagnostics.StackTrace\tests\System.Diagnostics.StackTrace.Tests.csproj
<SmokeTestProject Include="$(MSBuildThisFileDirectory)System.Diagnostics.StackTrace/tests/System.Diagnostics.StackTrace.Tests.csproj" /> | |
<SmokeTestProject Include="$(MSBuildThisFileDirectory)System.Diagnostics.StackTrace\tests\System.Diagnostics.StackTrace.Tests.csproj" /> |
Copilot uses AI. Check for mistakes.
No description provided.