Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/libraries/tests.proj
Original file line number Diff line number Diff line change
Expand Up @@ -539,6 +539,10 @@
<!-- browser smoke tests -->
<ItemGroup Condition="'$(TargetOS)' == 'browser'">
<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" />
Copy link
Preview

Copilot AI Aug 14, 2025

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

Suggested change
<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.Diagnostics.StackTrace/tests/System.Diagnostics.StackTrace.Tests.csproj" />
Copy link
Preview

Copilot AI Aug 14, 2025

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

Suggested change
<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.

</ItemGroup>

<!-- wasi/interp smoke tests -->
Expand Down
Loading