Skip to content

Commit

Permalink
[RISC-V] Address last code review comments cont
Browse files Browse the repository at this point in the history
  • Loading branch information
yurai007 committed Jul 9, 2024
1 parent a82fee7 commit ab84e6d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -800,7 +800,7 @@ public void Connect_ConnectTwice_NotSupported(int invalidatingAction)
{
using (Socket client = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp))
{
// Skip on Qemu due to https://github.com/dotnet/runtime/issues/104542
// Skip on Qemu due to [ActiveIssue(https://github.com/dotnet/runtime/issues/104542)]
if (PlatformDetection.IsQemuLinux && invalidatingAction == 1)
{
return;
Expand Down Expand Up @@ -838,7 +838,7 @@ public void ConnectAsync_ConnectTwice_NotSupported(int invalidatingAction)

using (Socket client = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp))
{
// Skip on Qemu due to https://github.com/dotnet/runtime/issues/104542
// Skip on Qemu due to [ActiveIssue(https://github.com/dotnet/runtime/issues/104542)]
if (PlatformDetection.IsQemuLinux && invalidatingAction == 1)
{
return;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ public void Socket_Get_KeepAlive_Time_AsByteArray_BufferNullOrTooSmall_Failure(b
{
if (PlatformDetection.IsQemuLinux && (buffer == null || buffer.Length == 0))
{
// Skip on Qemu due to https://github.com/dotnet/runtime/issues/104545
// Skip on Qemu due to [ActiveIssue(https://github.com/dotnet/runtime/issues/104545)]
return;
}
using (Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp))
Expand Down

0 comments on commit ab84e6d

Please sign in to comment.