Skip to content

Commit

Permalink
[xharness] Process '$(RootTestsDirectory)' before bailing due to any …
Browse files Browse the repository at this point in the history
…other variables when resolving paths in project files. (#9467)

While keeping '$(RootTestsDirectory)' as-is works fine when building the
project using MSBuild, xharness itself may end up encountering it (in
particular when listing referenced projects), and at that point will end up
confused. So just always resolve '$(RootTestsDirectory)' to the actual
directory to keep other parts of xharness happy.

Fixes this problem (as seen in PR #9460):

    Harness exception for 'interdependent-binding-projects': System.IO.DirectoryNotFoundException: Could not find a part of the path "/Users/builder/jenkins/workspace/xamarin-macios-pr-builder/tests/external/Touch.Unit/Touch.Client/dotnet/iOS/Touch.Client-iOS.dotnet.csproj".
        at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x0015e] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:223
        at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean isAsync, System.Boolean anonymous) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:149
        at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:86
        at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess)
        at Microsoft.DotNet.XHarness.iOS.Shared.Utilities.PListExtensions.LoadWithoutNetworkAccess (System.Xml.XmlDocument doc, System.String filename) [0x00001] in /Users/builder/jenkins/workspace/xamarin-macios-pr-builder/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Utilities/PlistExtensions.cs:17
        at Microsoft.DotNet.XHarness.iOS.Shared.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.iOS.Shared.Logging.ILog log, Microsoft.DotNet.XHarness.iOS.Shared.Execution.IProcessManager processManager, Microsoft.DotNet.XHarness.iOS.Shared.Tasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary`2[TKey,TValue] allProjectReferences) [0x0010c] in /Users/builder/jenkins/workspace/xamarin-macios-pr-builder/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestProject.cs:98
        at Microsoft.DotNet.XHarness.iOS.Shared.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.iOS.Shared.Logging.ILog log, Microsoft.DotNet.XHarness.iOS.Shared.Execution.IProcessManager processManager, Microsoft.DotNet.XHarness.iOS.Shared.Tasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary`2[TKey,TValue] allProjectReferences) [0x00811] in /Users/builder/jenkins/workspace/xamarin-macios-pr-builder/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestProject.cs:168
        at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00117] in /Users/builder/jenkins/workspace/xamarin-macios-pr-builder/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:274
  • Loading branch information
rolfbjarne committed Aug 24, 2020
1 parent a20e738 commit ccdd577
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -971,15 +971,15 @@ public static void ResolveAllPaths (this XmlDocument csproj, string project_path
if (input [0] == '/')
return input; // This is already a full path.
// Don't process anything that starts with a variable, it's either a full path already, or the variable will be updated according to the new location
if (input.StartsWith ("$(", StringComparison.Ordinal))
return input;
input = input.Replace ('\\', '/'); // make unix-style
if (rootDirectory != null)
input = input.Replace ("$(RootTestsDirectory)", rootDirectory);
// Don't process anything that starts with a variable, it's either a full path already, or the variable will be updated according to the new location
if (input.StartsWith ("$(", StringComparison.Ordinal))
return input;
input = System.IO.Path.GetFullPath (System.IO.Path.Combine (dir, input));
input = input.Replace ('/', '\\'); // make windows-style again
return input;
Expand Down

4 comments on commit ccdd577

@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 tvOS (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.

Build was (probably) aborted

🔥 Jenkins job (on internal Jenkins) failed in stage(s) 'Package XM tests, 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

6 tests failed, 182 tests passed.

Failed tests

  • mscorlib/Mac Full/Debug: Failed
  • mscorlib/Mac Modern/Debug: Failed
  • mscorlib Part 2/iOS Unified 32-bits - simulator/Debug: Failed
  • mscorlib Part 2/iOS Unified 64-bits - simulator/Debug: Failed
  • mscorlib Part 2/tvOS - simulator/Debug: Failed
  • mscorlib Part 2/watchOS 32-bits - 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 iOS (DDFun) ❌

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

Test results

150 tests failed, 0 tests passed.

Failed tests

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

Pipeline on Agent XAMTESTMAC04

@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 iOS (Cambridge) ❌

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

Test results

13 tests failed, 137 tests passed.

Failed tests

  • [NUnit] Mono BCL tests group 2/iOS Unified 64-bits - device/Debug: Failed
  • [NUnit] Mono BCL tests group 2/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • [NUnit] Mono BCL tests group 2/iOS Unified 64-bits - device/Release: Failed
  • [NUnit] Mono BCL tests group 2/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Failed
  • mscorlib Part 2/iOS Unified 64-bits - device/Debug: Failed
  • mscorlib Part 2/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): Failed
  • mscorlib Part 2/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • mscorlib Part 2/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • mscorlib Part 2/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • mscorlib Part 2/iOS Unified 64-bits - device/Release: Failed
  • mscorlib Part 2/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Failed
  • mscorlib Part 2/iOS Unified 64-bits - device/Debug: SGenConc: Failed
  • mscorlib Part 3/iOS Unified 64-bits - device/Release: TimedOut

Pipeline on Agent XI-SCARLET-WITCH

Please sign in to comment.