Skip to content
Open
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 @@ -57,11 +57,18 @@ public static IEnumerable<object[]> SymbolicLink_ResolveLinkTarget_PathToTarget_
{
get
{
foreach (string path in PathToTargetData.Union(PathToTargetUncData))
foreach (string path in PathToTargetData)
{
yield return new object[] { path, false };
yield return new object[] { path, true };
}
// UNC paths are excluded from the returnFinalTarget=true case since
// they throw "The specified network name is no longer available" in
// various Windows versions. https://github.com/dotnet/runtime/issues/120380
foreach (string path in PathToTargetUncData)
{
yield return new object[] { path, false };
}
}
}

Expand Down
Loading