Skip to content

Commit

Permalink
[xharness] Add support for adding PropertyGroups if none are applicab…
Browse files Browse the repository at this point in the history
…le when adding a property. (#9616)

Some .NET test projects (monotouch-test) require this to set properties for
some test variations, and .NET projects are quite minimal, making it likely
that they won't have a particular property that needs to be set/modified.

This makes it possible to execute the various monotouch-test variations for
.NET in xharness (some of the variations still fail though, so they're still
ignored by default).
  • Loading branch information
rolfbjarne authored Sep 10, 2020
1 parent 3b5c19a commit a2d50c7
Showing 1 changed file with 37 additions and 27 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -351,30 +351,25 @@ public static void AddMonoBundlingExtraArgs (this XmlDocument csproj, string val
public static void AddToNode (this XmlDocument csproj, string node, string value, string platform, string configuration)
{
var nodes = csproj.SelectNodes ($"//*[local-name() = '{node}']");
var found = false;
foreach (XmlNode mea in nodes) {
if (!IsNodeApplicable (mea, platform, configuration))
continue;

if (mea.InnerText.Length > 0 && mea.InnerText [mea.InnerText.Length - 1] != ' ')
mea.InnerText += " ";
mea.InnerText += value;
found = true;
}

if (found)
return;
}

// The project might not have this node, so create one of none was found.
var propertyGroups = csproj.SelectNodes ("//*[local-name() = 'PropertyGroup' and @Condition]");
foreach (XmlNode pg in propertyGroups) {
if (!EvaluateCondition (pg, platform, configuration))
continue;
var propertyGroups = csproj.SelectNodes ("//*[local-name() = 'PropertyGroup' and @Condition]").Cast<XmlNode> ();
var propertyGroup = propertyGroups.FirstOrDefault (v => EvaluateCondition (v, platform, configuration));
if (propertyGroup == null)
propertyGroup = csproj.AddPropertyGroup (platform, configuration);

var mea = csproj.CreateElement (node, csproj.GetNamespace ());
mea.InnerText = value;
pg.AppendChild (mea);
}
var newNode = csproj.CreateElement (node, csproj.GetNamespace ());
newNode.InnerText = value;
propertyGroup.AppendChild (newNode);
}

public static string GetMtouchLink (this XmlDocument csproj, string platform, string configuration)
Expand Down Expand Up @@ -827,25 +822,40 @@ public static void AddAdditionalDefines (this XmlDocument csproj, string value,
return;
}

var newPropertyGroup = csproj.AddPropertyGroup (platform, configuration);
var defineConstantsElement = csproj.CreateElement ("DefineConstants", csproj.GetNamespace ());
defineConstantsElement.InnerText = "$(DefineConstants);" + value;
newPropertyGroup.AppendChild (defineConstantsElement);
}

static XmlNode AddPropertyGroup (this XmlDocument csproj, string platform, string configuration)
{
// Create a new PropertyGroup with the desired condition, and add it just after the last PropertyGroup in the csproj.
var projectNode = csproj.SelectSingleNode ("//*[local-name() = 'Project']");
var lastPropertyGroup = csproj.SelectNodes ("//*[local-name() = 'PropertyGroup']").Cast<XmlNode> ().Last ();
var lastPropertyGroup = csproj.SelectNodes ("/*[local-name() = 'Project']/*[local-name() = 'PropertyGroup']").Cast<XmlNode> ().Last ();
var newPropertyGroup = csproj.CreateElement ("PropertyGroup", csproj.GetNamespace ());
var conditionAttribute = csproj.CreateAttribute ("Condition");
var condition = "";
if (!string.IsNullOrEmpty (platform))
condition = $"'$(Platform)' == '{platform}'";
if (!string.IsNullOrEmpty (configuration)) {
if (!string.IsNullOrEmpty (condition))
condition += " And ";
condition += $"'$(Configuration)' == '{configuration}'";
if (!string.IsNullOrEmpty (platform) || !string.IsNullOrEmpty (configuration)) {
// Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhoneSimulator' "
var conditionAttribute = csproj.CreateAttribute ("Condition");
var left = string.Empty;
var right = string.Empty;
if (!string.IsNullOrEmpty (configuration)) {
left = "$(Configuration)";
right = configuration;
}
if (!string.IsNullOrEmpty (platform)) {
if (!string.IsNullOrEmpty (left)) {
left += "|";
right += "|";
}
left += "$(Platform)";
right += platform;
}
conditionAttribute.Value = $"'{left}' == '{right}'";
newPropertyGroup.Attributes.Append (conditionAttribute);
}
conditionAttribute.Value = condition;
newPropertyGroup.Attributes.Append (conditionAttribute);
var defineConstantsElement = csproj.CreateElement ("DefineConstants", csproj.GetNamespace ());
defineConstantsElement.InnerText = "$(DefineConstants);" + value;
newPropertyGroup.AppendChild (defineConstantsElement);
projectNode.InsertAfter (newPropertyGroup, lastPropertyGroup);
return newPropertyGroup;
}

public static void AddTopLevelProperty (this XmlDocument csproj, string property, string value)
Expand Down

15 comments on commit a2d50c7

@xamarin-release-manager
Copy link
Collaborator

Choose a reason for hiding this comment

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

🔥 Pipeline scripts tests failed on VSTS: device tests iOS (DDFun) 🔥

The tests of the scripts used in the pipeline failed. The build was cancelled.

Pipeline on Agent

@xamarin-release-manager
Copy link
Collaborator

Choose a reason for hiding this comment

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

🔥 Tests failed catastrophically on VSTS: device tests iOS (DDFun) 🔥

Not enough free space in the host.

Pipeline on Agent

@xamarin-release-manager
Copy link
Collaborator

Choose a reason for hiding this comment

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

🔥 Tests failed catastrophically on VSTS: device tests iOS (Cambridge) 🔥

Failed provisioning profiles.

Pipeline on Agent

@xamarin-release-manager
Copy link
Collaborator

Choose a reason for hiding this comment

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

🔥 Tests failed catastrophically on VSTS: device tests iOS (Cambridge) 🔥

Failed installing dependencies.

Pipeline on Agent

@xamarin-release-manager
Copy link
Collaborator

Choose a reason for hiding this comment

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

@xamarin-release-manager
Copy link
Collaborator

Choose a reason for hiding this comment

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

❌ Device tests failed on VSTS: device tests tvOS (DDFun) ❌

Device tests failed on VSTS: device tests tvOS (DDFun).

Test results

150 tests failed, 0 tests passed.

Failed tests

  • monotouch-test/tvOS - device/Debug: HarnessException (Harness exception for 'monotouch-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • monotouch-test/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for 'monotouch-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • monotouch-test/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for 'monotouch-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • monotouch-test/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for 'monotouch-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • monotouch-test/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for 'monotouch-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • monotouch-test/tvOS - device/Release: HarnessException (Harness exception for 'monotouch-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • monotouch-test/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for 'monotouch-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • monotouch-test/tvOS - device/Debug (dynamic registrar): HarnessException (Harness exception for 'monotouch-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • monotouch-test/tvOS - device/Release (all optimizations): HarnessException (Harness exception for 'monotouch-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • monotouch-test/tvOS - device/Debug (all optimizations): HarnessException (Harness exception for 'monotouch-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • monotouch-test/tvOS - device/Debug: SGenConc: HarnessException (Harness exception for 'monotouch-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • monotouch-test/tvOS - device/Debug (interpreter): HarnessException (Harness exception for 'monotouch-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • monotouch-test/tvOS - device/Debug (interpreter -mscorlib): HarnessException (Harness exception for 'monotouch-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • monotouch-test/tvOS - device/Release (interpreter -mscorlib): HarnessException (Harness exception for 'monotouch-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • framework-test/tvOS - device/Debug: HarnessException (Harness exception for 'framework-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • framework-test/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for 'framework-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • framework-test/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for 'framework-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • framework-test/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for 'framework-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • framework-test/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for 'framework-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • framework-test/tvOS - device/Release: HarnessException (Harness exception for 'framework-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • framework-test/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for 'framework-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • fsharp/tvOS - device/Debug: HarnessException (Harness exception for 'fsharp': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • fsharp/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for 'fsharp': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • fsharp/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for 'fsharp': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • fsharp/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for 'fsharp': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • fsharp/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for 'fsharp': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • fsharp/tvOS - device/Release: HarnessException (Harness exception for 'fsharp': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • fsharp/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for 'fsharp': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • interdependent-binding-projects/tvOS - device/Debug: HarnessException (Harness exception for 'interdependent-binding-projects': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • interdependent-binding-projects/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for 'interdependent-binding-projects': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • interdependent-binding-projects/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for 'interdependent-binding-projects': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • interdependent-binding-projects/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for 'interdependent-binding-projects': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • interdependent-binding-projects/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for 'interdependent-binding-projects': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • interdependent-binding-projects/tvOS - device/Release: HarnessException (Harness exception for 'interdependent-binding-projects': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • interdependent-binding-projects/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for 'interdependent-binding-projects': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • dont link/tvOS - device/Debug: HarnessException (Harness exception for 'dont link': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • dont link/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for 'dont link': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • dont link/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for 'dont link': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • dont link/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for 'dont link': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • dont link/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for 'dont link': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • dont link/tvOS - device/Release: HarnessException (Harness exception for 'dont link': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • dont link/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for 'dont link': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • link all/tvOS - device/Debug: HarnessException (Harness exception for 'link all': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • link all/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for 'link all': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • link all/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for 'link all': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • link all/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for 'link all': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • link all/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for 'link all': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • link all/tvOS - device/Release: HarnessException (Harness exception for 'link all': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • link all/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for 'link all': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • link sdk/tvOS - device/Debug: HarnessException (Harness exception for 'link sdk': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • link sdk/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for 'link sdk': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • link sdk/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for 'link sdk': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • link sdk/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for 'link sdk': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • link sdk/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for 'link sdk': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • link sdk/tvOS - device/Release: HarnessException (Harness exception for 'link sdk': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • link sdk/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for 'link sdk': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mono-native-compat/tvOS - device/Debug: HarnessException (Harness exception for 'mono-native-compat': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mono-native-compat/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for 'mono-native-compat': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mono-native-compat/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for 'mono-native-compat': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mono-native-compat/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for 'mono-native-compat': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mono-native-compat/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for 'mono-native-compat': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mono-native-compat/tvOS - device/Release: HarnessException (Harness exception for 'mono-native-compat': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mono-native-compat/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for 'mono-native-compat': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mono-native-unified/tvOS - device/Debug: HarnessException (Harness exception for 'mono-native-unified': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mono-native-unified/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for 'mono-native-unified': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mono-native-unified/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for 'mono-native-unified': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mono-native-unified/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for 'mono-native-unified': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mono-native-unified/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for 'mono-native-unified': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mono-native-unified/tvOS - device/Release: HarnessException (Harness exception for 'mono-native-unified': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mono-native-unified/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for 'mono-native-unified': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [NUnit] Mono BCL tests group 1/tvOS - device/Debug: HarnessException (Harness exception for '[NUnit] Mono BCL tests group 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [NUnit] Mono BCL tests group 1/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for '[NUnit] Mono BCL tests group 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [NUnit] Mono BCL tests group 1/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for '[NUnit] Mono BCL tests group 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [NUnit] Mono BCL tests group 1/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for '[NUnit] Mono BCL tests group 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [NUnit] Mono BCL tests group 1/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for '[NUnit] Mono BCL tests group 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [NUnit] Mono BCL tests group 1/tvOS - device/Release: HarnessException (Harness exception for '[NUnit] Mono BCL tests group 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [NUnit] Mono BCL tests group 1/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for '[NUnit] Mono BCL tests group 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [NUnit] Mono BCL tests group 2/tvOS - device/Debug: HarnessException (Harness exception for '[NUnit] Mono BCL tests group 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [NUnit] Mono BCL tests group 2/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for '[NUnit] Mono BCL tests group 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [NUnit] Mono BCL tests group 2/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for '[NUnit] Mono BCL tests group 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [NUnit] Mono BCL tests group 2/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for '[NUnit] Mono BCL tests group 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [NUnit] Mono BCL tests group 2/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for '[NUnit] Mono BCL tests group 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [NUnit] Mono BCL tests group 2/tvOS - device/Release: HarnessException (Harness exception for '[NUnit] Mono BCL tests group 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [NUnit] Mono BCL tests group 2/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for '[NUnit] Mono BCL tests group 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 3/tvOS - device/Debug: HarnessException (Harness exception for '[xUnit] Mono BCL tests group 3': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 3/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for '[xUnit] Mono BCL tests group 3': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 3/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for '[xUnit] Mono BCL tests group 3': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 3/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for '[xUnit] Mono BCL tests group 3': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 3/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for '[xUnit] Mono BCL tests group 3': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 3/tvOS - device/Release: HarnessException (Harness exception for '[xUnit] Mono BCL tests group 3': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 3/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for '[xUnit] Mono BCL tests group 3': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 4/tvOS - device/Debug: HarnessException (Harness exception for '[xUnit] Mono BCL tests group 4': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 4/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for '[xUnit] Mono BCL tests group 4': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 4/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for '[xUnit] Mono BCL tests group 4': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 4/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for '[xUnit] Mono BCL tests group 4': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 4/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for '[xUnit] Mono BCL tests group 4': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 4/tvOS - device/Release: HarnessException (Harness exception for '[xUnit] Mono BCL tests group 4': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 4/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for '[xUnit] Mono BCL tests group 4': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 5/tvOS - device/Debug: HarnessException (Harness exception for '[xUnit] Mono BCL tests group 5': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 5/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for '[xUnit] Mono BCL tests group 5': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 5/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for '[xUnit] Mono BCL tests group 5': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 5/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for '[xUnit] Mono BCL tests group 5': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 5/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for '[xUnit] Mono BCL tests group 5': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 5/tvOS - device/Release: HarnessException (Harness exception for '[xUnit] Mono BCL tests group 5': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 5/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for '[xUnit] Mono BCL tests group 5': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 1/tvOS - device/Debug: HarnessException (Harness exception for 'mscorlib Part 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 1/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for 'mscorlib Part 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 1/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for 'mscorlib Part 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 1/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for 'mscorlib Part 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 1/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for 'mscorlib Part 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 1/tvOS - device/Release: HarnessException (Harness exception for 'mscorlib Part 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 1/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for 'mscorlib Part 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 1/tvOS - device/Debug: SGenConc: HarnessException (Harness exception for 'mscorlib Part 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 2/tvOS - device/Debug: HarnessException (Harness exception for 'mscorlib Part 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 2/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for 'mscorlib Part 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 2/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for 'mscorlib Part 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 2/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for 'mscorlib Part 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 2/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for 'mscorlib Part 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 2/tvOS - device/Release: HarnessException (Harness exception for 'mscorlib Part 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 2/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for 'mscorlib Part 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 2/tvOS - device/Debug: SGenConc: HarnessException (Harness exception for 'mscorlib Part 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 3/tvOS - device/Debug: HarnessException (Harness exception for 'mscorlib Part 3': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 3/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for 'mscorlib Part 3': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 3/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for 'mscorlib Part 3': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 3/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for 'mscorlib Part 3': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 3/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for 'mscorlib Part 3': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 3/tvOS - device/Release: HarnessException (Harness exception for 'mscorlib Part 3': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 3/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for 'mscorlib Part 3': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 3/tvOS - device/Debug: SGenConc: HarnessException (Harness exception for 'mscorlib Part 3': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemCoreXunit Part 1/tvOS - device/Debug: HarnessException (Harness exception for '[xUnit] Mono SystemCoreXunit Part 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemCoreXunit Part 1/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for '[xUnit] Mono SystemCoreXunit Part 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemCoreXunit Part 1/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for '[xUnit] Mono SystemCoreXunit Part 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemCoreXunit Part 1/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for '[xUnit] Mono SystemCoreXunit Part 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemCoreXunit Part 1/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for '[xUnit] Mono SystemCoreXunit Part 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemCoreXunit Part 1/tvOS - device/Release: HarnessException (Harness exception for '[xUnit] Mono SystemCoreXunit Part 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemCoreXunit Part 1/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for '[xUnit] Mono SystemCoreXunit Part 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemCoreXunit Part 2/tvOS - device/Debug: HarnessException (Harness exception for '[xUnit] Mono SystemCoreXunit Part 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemCoreXunit Part 2/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for '[xUnit] Mono SystemCoreXunit Part 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemCoreXunit Part 2/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for '[xUnit] Mono SystemCoreXunit Part 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemCoreXunit Part 2/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for '[xUnit] Mono SystemCoreXunit Part 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemCoreXunit Part 2/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for '[xUnit] Mono SystemCoreXunit Part 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemCoreXunit Part 2/tvOS - device/Release: HarnessException (Harness exception for '[xUnit] Mono SystemCoreXunit Part 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemCoreXunit Part 2/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for '[xUnit] Mono SystemCoreXunit Part 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemXunit/tvOS - device/Debug: HarnessException (Harness exception for '[xUnit] Mono SystemXunit': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemXunit/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for '[xUnit] Mono SystemXunit': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemXunit/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for '[xUnit] Mono SystemXunit': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemXunit/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for '[xUnit] Mono SystemXunit': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemXunit/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for '[xUnit] Mono SystemXunit': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemXunit/tvOS - device/Release: HarnessException (Harness exception for '[xUnit] Mono SystemXunit': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemXunit/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for '[xUnit] Mono SystemXunit': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )

Pipeline on Agent XAMTESTMAC10

@xamarin-release-manager
Copy link
Collaborator

Choose a reason for hiding this comment

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

🔥 Pipeline scripts tests failed on VSTS: device tests iOS (DDFun) 🔥

The tests of the scripts used in the pipeline failed. The build was cancelled.

Pipeline on Agent

@xamarin-release-manager
Copy link
Collaborator

Choose a reason for hiding this comment

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

🔥 Tests failed catastrophically on VSTS: device tests iOS (DDFun) 🔥

Not enough free space in the host.

Pipeline on Agent

@xamarin-release-manager
Copy link
Collaborator

Choose a reason for hiding this comment

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

🔥 Tests failed catastrophically on VSTS: device tests iOS (DDFun) 🔥

Failed provisioning profiles.

Pipeline on Agent

@xamarin-release-manager
Copy link
Collaborator

Choose a reason for hiding this comment

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

🔥 Tests failed catastrophically on VSTS: device tests iOS (DDFun) 🔥

Failed installing dependencies.

Pipeline on Agent

@xamarin-release-manager
Copy link
Collaborator

Choose a reason for hiding this comment

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

🔥 Tests failed catastrophically on VSTS: device tests iOS (Cambridge) 🔥

Failed provisioning profiles.

Pipeline on Agent

@xamarin-release-manager
Copy link
Collaborator

Choose a reason for hiding this comment

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

🔥 Tests failed catastrophically on VSTS: device tests iOS (Cambridge) 🔥

Failed installing dependencies.

Pipeline on Agent

@xamarin-release-manager
Copy link
Collaborator

Choose a reason for hiding this comment

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

Build was (probably) aborted

🔥 Jenkins job (on internal Jenkins) failed in stage(s) 'Test run' 🔥

Provisioning succeeded
Build succeeded
✅ Packages built successfully

View packages

API Diff (from stable)
API Diff (from PR only) (no change)
Generator Diff (no change)
🔥 Test run failed 🔥

Test results

1 tests failed, 191 tests passed.

Failed tests

  • [NUnit] Mono BCL tests group 2/tvOS - simulator/Debug: Failed

@xamarin-release-manager
Copy link
Collaborator

Choose a reason for hiding this comment

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

❌ Device tests failed on VSTS: device tests tvOS (DDFun) ❌

Device tests failed on VSTS: device tests tvOS (DDFun).

Test results

150 tests failed, 0 tests passed.

Failed tests

  • monotouch-test/tvOS - device/Debug: HarnessException (Harness exception for 'monotouch-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • monotouch-test/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for 'monotouch-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • monotouch-test/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for 'monotouch-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • monotouch-test/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for 'monotouch-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • monotouch-test/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for 'monotouch-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • monotouch-test/tvOS - device/Release: HarnessException (Harness exception for 'monotouch-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • monotouch-test/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for 'monotouch-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • monotouch-test/tvOS - device/Debug (dynamic registrar): HarnessException (Harness exception for 'monotouch-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • monotouch-test/tvOS - device/Release (all optimizations): HarnessException (Harness exception for 'monotouch-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • monotouch-test/tvOS - device/Debug (all optimizations): HarnessException (Harness exception for 'monotouch-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • monotouch-test/tvOS - device/Debug: SGenConc: HarnessException (Harness exception for 'monotouch-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • monotouch-test/tvOS - device/Debug (interpreter): HarnessException (Harness exception for 'monotouch-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • monotouch-test/tvOS - device/Debug (interpreter -mscorlib): HarnessException (Harness exception for 'monotouch-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • monotouch-test/tvOS - device/Release (interpreter -mscorlib): HarnessException (Harness exception for 'monotouch-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • framework-test/tvOS - device/Debug: HarnessException (Harness exception for 'framework-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • framework-test/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for 'framework-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • framework-test/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for 'framework-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • framework-test/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for 'framework-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • framework-test/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for 'framework-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • framework-test/tvOS - device/Release: HarnessException (Harness exception for 'framework-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • framework-test/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for 'framework-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • fsharp/tvOS - device/Debug: HarnessException (Harness exception for 'fsharp': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • fsharp/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for 'fsharp': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • fsharp/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for 'fsharp': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • fsharp/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for 'fsharp': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • fsharp/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for 'fsharp': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • fsharp/tvOS - device/Release: HarnessException (Harness exception for 'fsharp': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • fsharp/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for 'fsharp': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • interdependent-binding-projects/tvOS - device/Debug: HarnessException (Harness exception for 'interdependent-binding-projects': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • interdependent-binding-projects/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for 'interdependent-binding-projects': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • interdependent-binding-projects/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for 'interdependent-binding-projects': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • interdependent-binding-projects/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for 'interdependent-binding-projects': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • interdependent-binding-projects/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for 'interdependent-binding-projects': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • interdependent-binding-projects/tvOS - device/Release: HarnessException (Harness exception for 'interdependent-binding-projects': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • interdependent-binding-projects/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for 'interdependent-binding-projects': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • dont link/tvOS - device/Debug: HarnessException (Harness exception for 'dont link': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • dont link/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for 'dont link': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • dont link/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for 'dont link': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • dont link/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for 'dont link': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • dont link/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for 'dont link': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • dont link/tvOS - device/Release: HarnessException (Harness exception for 'dont link': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • dont link/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for 'dont link': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • link all/tvOS - device/Debug: HarnessException (Harness exception for 'link all': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • link all/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for 'link all': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • link all/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for 'link all': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • link all/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for 'link all': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • link all/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for 'link all': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • link all/tvOS - device/Release: HarnessException (Harness exception for 'link all': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • link all/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for 'link all': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • link sdk/tvOS - device/Debug: HarnessException (Harness exception for 'link sdk': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • link sdk/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for 'link sdk': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • link sdk/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for 'link sdk': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • link sdk/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for 'link sdk': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • link sdk/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for 'link sdk': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • link sdk/tvOS - device/Release: HarnessException (Harness exception for 'link sdk': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • link sdk/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for 'link sdk': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mono-native-compat/tvOS - device/Debug: HarnessException (Harness exception for 'mono-native-compat': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mono-native-compat/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for 'mono-native-compat': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mono-native-compat/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for 'mono-native-compat': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mono-native-compat/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for 'mono-native-compat': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mono-native-compat/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for 'mono-native-compat': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mono-native-compat/tvOS - device/Release: HarnessException (Harness exception for 'mono-native-compat': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mono-native-compat/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for 'mono-native-compat': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mono-native-unified/tvOS - device/Debug: HarnessException (Harness exception for 'mono-native-unified': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mono-native-unified/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for 'mono-native-unified': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mono-native-unified/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for 'mono-native-unified': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mono-native-unified/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for 'mono-native-unified': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mono-native-unified/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for 'mono-native-unified': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mono-native-unified/tvOS - device/Release: HarnessException (Harness exception for 'mono-native-unified': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mono-native-unified/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for 'mono-native-unified': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [NUnit] Mono BCL tests group 1/tvOS - device/Debug: HarnessException (Harness exception for '[NUnit] Mono BCL tests group 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [NUnit] Mono BCL tests group 1/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for '[NUnit] Mono BCL tests group 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [NUnit] Mono BCL tests group 1/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for '[NUnit] Mono BCL tests group 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [NUnit] Mono BCL tests group 1/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for '[NUnit] Mono BCL tests group 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [NUnit] Mono BCL tests group 1/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for '[NUnit] Mono BCL tests group 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [NUnit] Mono BCL tests group 1/tvOS - device/Release: HarnessException (Harness exception for '[NUnit] Mono BCL tests group 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [NUnit] Mono BCL tests group 1/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for '[NUnit] Mono BCL tests group 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [NUnit] Mono BCL tests group 2/tvOS - device/Debug: HarnessException (Harness exception for '[NUnit] Mono BCL tests group 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [NUnit] Mono BCL tests group 2/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for '[NUnit] Mono BCL tests group 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [NUnit] Mono BCL tests group 2/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for '[NUnit] Mono BCL tests group 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [NUnit] Mono BCL tests group 2/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for '[NUnit] Mono BCL tests group 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [NUnit] Mono BCL tests group 2/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for '[NUnit] Mono BCL tests group 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [NUnit] Mono BCL tests group 2/tvOS - device/Release: HarnessException (Harness exception for '[NUnit] Mono BCL tests group 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [NUnit] Mono BCL tests group 2/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for '[NUnit] Mono BCL tests group 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 3/tvOS - device/Debug: HarnessException (Harness exception for '[xUnit] Mono BCL tests group 3': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 3/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for '[xUnit] Mono BCL tests group 3': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 3/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for '[xUnit] Mono BCL tests group 3': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 3/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for '[xUnit] Mono BCL tests group 3': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 3/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for '[xUnit] Mono BCL tests group 3': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 3/tvOS - device/Release: HarnessException (Harness exception for '[xUnit] Mono BCL tests group 3': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 3/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for '[xUnit] Mono BCL tests group 3': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 4/tvOS - device/Debug: HarnessException (Harness exception for '[xUnit] Mono BCL tests group 4': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 4/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for '[xUnit] Mono BCL tests group 4': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 4/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for '[xUnit] Mono BCL tests group 4': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 4/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for '[xUnit] Mono BCL tests group 4': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 4/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for '[xUnit] Mono BCL tests group 4': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 4/tvOS - device/Release: HarnessException (Harness exception for '[xUnit] Mono BCL tests group 4': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 4/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for '[xUnit] Mono BCL tests group 4': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 5/tvOS - device/Debug: HarnessException (Harness exception for '[xUnit] Mono BCL tests group 5': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 5/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for '[xUnit] Mono BCL tests group 5': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 5/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for '[xUnit] Mono BCL tests group 5': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 5/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for '[xUnit] Mono BCL tests group 5': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 5/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for '[xUnit] Mono BCL tests group 5': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 5/tvOS - device/Release: HarnessException (Harness exception for '[xUnit] Mono BCL tests group 5': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono BCL tests group 5/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for '[xUnit] Mono BCL tests group 5': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 1/tvOS - device/Debug: HarnessException (Harness exception for 'mscorlib Part 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 1/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for 'mscorlib Part 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 1/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for 'mscorlib Part 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 1/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for 'mscorlib Part 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 1/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for 'mscorlib Part 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 1/tvOS - device/Release: HarnessException (Harness exception for 'mscorlib Part 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 1/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for 'mscorlib Part 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 1/tvOS - device/Debug: SGenConc: HarnessException (Harness exception for 'mscorlib Part 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 2/tvOS - device/Debug: HarnessException (Harness exception for 'mscorlib Part 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 2/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for 'mscorlib Part 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 2/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for 'mscorlib Part 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 2/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for 'mscorlib Part 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 2/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for 'mscorlib Part 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 2/tvOS - device/Release: HarnessException (Harness exception for 'mscorlib Part 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 2/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for 'mscorlib Part 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 2/tvOS - device/Debug: SGenConc: HarnessException (Harness exception for 'mscorlib Part 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 3/tvOS - device/Debug: HarnessException (Harness exception for 'mscorlib Part 3': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 3/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for 'mscorlib Part 3': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 3/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for 'mscorlib Part 3': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 3/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for 'mscorlib Part 3': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 3/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for 'mscorlib Part 3': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 3/tvOS - device/Release: HarnessException (Harness exception for 'mscorlib Part 3': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 3/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for 'mscorlib Part 3': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 3/tvOS - device/Debug: SGenConc: HarnessException (Harness exception for 'mscorlib Part 3': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemCoreXunit Part 1/tvOS - device/Debug: HarnessException (Harness exception for '[xUnit] Mono SystemCoreXunit Part 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemCoreXunit Part 1/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for '[xUnit] Mono SystemCoreXunit Part 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemCoreXunit Part 1/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for '[xUnit] Mono SystemCoreXunit Part 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemCoreXunit Part 1/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for '[xUnit] Mono SystemCoreXunit Part 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemCoreXunit Part 1/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for '[xUnit] Mono SystemCoreXunit Part 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemCoreXunit Part 1/tvOS - device/Release: HarnessException (Harness exception for '[xUnit] Mono SystemCoreXunit Part 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemCoreXunit Part 1/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for '[xUnit] Mono SystemCoreXunit Part 1': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemCoreXunit Part 2/tvOS - device/Debug: HarnessException (Harness exception for '[xUnit] Mono SystemCoreXunit Part 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemCoreXunit Part 2/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for '[xUnit] Mono SystemCoreXunit Part 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemCoreXunit Part 2/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for '[xUnit] Mono SystemCoreXunit Part 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemCoreXunit Part 2/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for '[xUnit] Mono SystemCoreXunit Part 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemCoreXunit Part 2/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for '[xUnit] Mono SystemCoreXunit Part 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemCoreXunit Part 2/tvOS - device/Release: HarnessException (Harness exception for '[xUnit] Mono SystemCoreXunit Part 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemCoreXunit Part 2/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for '[xUnit] Mono SystemCoreXunit Part 2': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemXunit/tvOS - device/Debug: HarnessException (Harness exception for '[xUnit] Mono SystemXunit': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemXunit/tvOS - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for '[xUnit] Mono SystemXunit': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemXunit/tvOS - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for '[xUnit] Mono SystemXunit': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemXunit/tvOS - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for '[xUnit] Mono SystemXunit': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemXunit/tvOS - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for '[xUnit] Mono SystemXunit': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemXunit/tvOS - device/Release: HarnessException (Harness exception for '[xUnit] Mono SystemXunit': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • [xUnit] Mono SystemXunit/tvOS - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for '[xUnit] Mono SystemXunit': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC10'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/10/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )

Pipeline on Agent XAMTESTMAC10'

@xamarin-release-manager
Copy link
Collaborator

Choose a reason for hiding this comment

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

❌ Device tests failed on VSTS: device tests iOS32b (Cambridge) ❌

Device tests failed on VSTS: device tests iOS32b (Cambridge).

Test results

18 tests failed, 143 tests passed.

Failed tests

  • monotouch-test/iOS Unified 32-bits - device/Debug: Failed
  • monotouch-test/iOS Unified 32-bits - device/AssemblyBuildTarget: dylib (debug): Failed
  • monotouch-test/iOS Unified 32-bits - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • monotouch-test/iOS Unified 32-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • monotouch-test/iOS Unified 32-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • monotouch-test/iOS Unified 32-bits - device/Release: Failed
  • monotouch-test/iOS Unified 32-bits - device/Release: UseThumb: Failed
  • monotouch-test/iOS Unified 32-bits - device/AssemblyBuildTarget: SDK framework (release): Failed
  • monotouch-test/iOS Unified 32-bits - device/Release (all optimizations): Failed
  • monotouch-test/iOS Unified 32-bits - device/Debug (all optimizations): Failed
  • monotouch-test/iOS Unified 32-bits - device/Debug: SGenConc: Failed
  • [NUnit] Mono BCL tests group 2/iOS Unified 32-bits - device/Release: UseThumb: TimedOut
  • mscorlib Part 1/iOS Unified 32-bits - device/AssemblyBuildTarget: dylib (debug, profiling): TimedOut
  • mscorlib Part 1/iOS Unified 32-bits - device/Release: BuildFailure Known issue: Undefined symbol ___multi3 on Release Mode.
  • mscorlib Part 1/iOS Unified 32-bits - device/Release: UseThumb: BuildFailure Known issue: Undefined symbol ___multi3 on Release Mode.
  • mscorlib Part 1/iOS Unified 32-bits - device/AssemblyBuildTarget: SDK framework (release): BuildFailure Known issue: Undefined symbol ___multi3 on Release Mode.
  • mscorlib Part 1/iOS Unified 32-bits - device/Debug: SGenConc: TimedOut
  • [xUnit] Mono SystemXunit/iOS Unified 32-bits - device/AssemblyBuildTarget: dylib (debug): TimedOut

Pipeline on Agent XI-CAPTAIN-MARVEL

Please sign in to comment.