Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -694,6 +694,11 @@ public async Task SendPingAsyncWithAlreadyCanceledToken(bool useIPAddress)
[OuterLoop] // Depends on external host and assumption that successful ping takes long enough for cancellation to go through first
public async Task CancelSendPingAsync(bool useIPAddress, bool useCancellationToken)
{
if (PlatformDetection.IsOSX && useIPAddress && !useCancellationToken)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ActiveIssue???

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In the SkipTestException message

{
throw new SkipTestException("[ActiveIssue(https://github.com/dotnet/runtime/issues/114782)]");
}

using CancellationTokenSource source = new();

using Ping ping = new();
Expand Down Expand Up @@ -870,7 +875,8 @@ public async Task SendPingAsync_LocaleEnvVarsMustBeIgnored(AddressFamily address
{
IPAddress localIpAddress = TestSettings.GetLocalIPAddress(addressFamily);

var remoteInvokeStartInfo = new ProcessStartInfo {
var remoteInvokeStartInfo = new ProcessStartInfo
{
EnvironmentVariables =
{
["LANG"] = envVar_LANG,
Expand Down
Loading