Skip to content

Commit

Permalink
[dotnet] Implement support for our different link modes. (#9460)
Browse files Browse the repository at this point in the history
* [mmp] Rename LinkMode.All to LinkMode.Full.

So that we can continue to use Enum.Parse<LinkMode> to parse 'Full' as the link mode.

* [dotnet] Implement support for our different link modes.

Tell the managed linker what to do with each input assembly depending the selected
link mode (link all, link sdk, don't link).
  • Loading branch information
rolfbjarne committed Aug 24, 2020
1 parent ccdd577 commit d7ab847
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 4 deletions.
22 changes: 21 additions & 1 deletion dotnet/targets/Xamarin.Shared.Sdk.targets
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,10 @@
<_AdditionalTaskAssemblyDirectory>$(_XamarinSdkRootDirectory)tools/dotnet-linker/</_AdditionalTaskAssemblyDirectory>
<_AdditionalTaskAssembly>$(_AdditionalTaskAssemblyDirectory)dotnet-linker.dll</_AdditionalTaskAssembly>
</PropertyGroup>
<Target Name="_ComputeLinkerArguments" DependsOnTargets="_ComputeLinkMode">
<Target Name="_ComputeLinkerArguments" DependsOnTargets="_ComputeLinkMode;ComputeResolvedFilesToPublishList">
<!-- Validate the linker mode -->
<Error Text="Invalid link mode: '$(_LinkMode)'. Valid link modes are: 'None', 'SdkOnly' and 'Full'" Condition="'$(_LinkMode)' != 'None' And '$(_LinkMode)' != 'SdkOnly' And '$(_LinkMode)' != 'Full'" />

<PropertyGroup>
<!-- Pass the custom options to our custom steps -->
<_CustomLinkerOptionsFile>$([System.IO.Path]::GetFullPath('$(IntermediateOutputPath)custom-linker-options.txt'))</_CustomLinkerOptionsFile>
Expand Down Expand Up @@ -146,6 +149,11 @@
<!-- System.Runtime.dll isn't always copied to the .app -->
<_ExtraTrimmerArgs>$(_ExtraTrimmerArgs) -p copy "System.Runtime"</_ExtraTrimmerArgs>

<!-- TrimMode specifies what the linker will do with framework assemblies -->
<TrimMode Condition="'$(_LinkMode)' == 'None'">copy</TrimMode> <!-- Don't use 'copyused', because that might still end up saving some assemblies, and if that's the platform assembly, it may break the partial static registrar -->
<TrimMode Condition="'$(_LinkMode)' == 'SdkOnly' Or '$(_LinkMode)' == 'Full'">link</TrimMode>
<!-- For Full link mode we also need to set TrimMode for all non-framework assemblies. This is done further below -->

<!-- Verbose output, so that we get something to stdout when something goes wrong -->
<_ExtraTrimmerArgs>$(_ExtraTrimmerArgs) --verbose</_ExtraTrimmerArgs>

Expand All @@ -161,7 +169,19 @@
-->
<_ExtraTrimmerArgs>$(_ExtraTrimmerArgs) -b</_ExtraTrimmerArgs>
</PropertyGroup>

<ItemGroup>
<!-- Mark all assemblies to be linked if we're linking all assemblies -->
<ResolvedFileToPublish
Update="@(ResolvedFileToPublish)"
Condition="'$(_LinkMode)' == 'Full' And '%(ResolvedFileToPublish.Extension)' == '.dll' And '%(ResolvedFileToPublish.AssetType)' != 'native'"
>
<TrimMode>link</TrimMode>
</ResolvedFileToPublish>

<!-- Mark our entry assembly as a root assembly. -->
<TrimmerRootAssembly Include="$(AssemblyName)" />

<!-- add a custom step which inserts any other steps we need -->
<_TrimmerCustomSteps Include="$(_AdditionalTaskAssembly)">
<BeforeStep>LoadReferencesStep</BeforeStep>
Expand Down
2 changes: 1 addition & 1 deletion tools/common/Application.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public partial class Application
public ApplePlatform Platform { get { return Driver.TargetFramework.Platform; } }

// Linker config
public LinkMode LinkMode = LinkMode.All;
public LinkMode LinkMode = LinkMode.Full;
public List<string> LinkSkipped = new List<string> ();
public List<string> Definitions = new List<string> ();
public I18nAssemblies I18n;
Expand Down
2 changes: 1 addition & 1 deletion tools/common/LinkMode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Xamarin.Bundler {
public enum LinkMode {
None,
SDKOnly,
All,
Full,
Platform,
}
}
2 changes: 1 addition & 1 deletion tools/mmp/driver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ static void Pack (IList<string> unprocessed)
if (generate_plist)
GeneratePList ();

if (App.LinkMode != LinkMode.All && App.RuntimeOptions != null)
if (App.LinkMode != LinkMode.Full && App.RuntimeOptions != null)
App.RuntimeOptions.Write (resources_dir);

if (App.AOTOptions != null && App.AOTOptions.IsAOT) {
Expand Down

4 comments on commit d7ab847

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

❌ 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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/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 'XAMTESTMAC07'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:397
    at Xharness.AppRunner.RunAsync () [0x00369] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/AppRunner.cs:243
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:108
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )

Pipeline on Agent XAMTESTMAC07'

@xamarin-release-manager
Copy link
Collaborator

Choose a reason for hiding this comment

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

Build was (probably) aborted

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

Provisioning succeeded
Build succeeded
✅ Packages built successfully

View packages

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

Test results

7 tests failed, 181 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
  • MTouch tests/NUnit: Failed (Execution failed with exit code 1)

@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

23 tests failed, 127 tests passed.

Failed tests

  • monotouch-test/iOS Unified 64-bits - device/Debug: TimedOut (MT1043: Failed to launch the application using the instruments service. Will try launching the app using gdb service.)
  • monotouch-test/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): TimedOut (MT1043: Failed to launch the application using the instruments service. Will try launching the app using gdb service.)
  • monotouch-test/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): TimedOut (MT1043: Failed to launch the application using the instruments service. Will try launching the app using gdb service.)
  • monotouch-test/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): TimedOut (MT1043: Failed to launch the application using the instruments service. Will try launching the app using gdb service.)
  • monotouch-test/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): TimedOut (MT1043: Failed to launch the application using the instruments service. Will try launching the app using gdb service.)
  • monotouch-test/iOS Unified 64-bits - device/Release: TimedOut (MT1043: Failed to launch the application using the instruments service. Will try launching the app using gdb service.)
  • monotouch-test/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): TimedOut (MT1043: Failed to launch the application using the instruments service. Will try launching the app using gdb service.)
  • monotouch-test/iOS Unified 64-bits - device/Debug (dynamic registrar): TimedOut (MT1043: Failed to launch the application using the instruments service. Will try launching the app using gdb service.)
  • monotouch-test/iOS Unified 64-bits - device/Release (all optimizations): TimedOut (MT1043: Failed to launch the application using the instruments service. Will try launching the app using gdb service.)
  • monotouch-test/iOS Unified 64-bits - device/Debug (all optimizations): TimedOut (MT1043: Failed to launch the application using the instruments service. Will try launching the app using gdb service.)
  • monotouch-test/iOS Unified 64-bits - device/Debug: SGenConc: TimedOut (MT1043: Failed to launch the application using the instruments service. Will try launching the app using gdb service.)
  • monotouch-test/iOS Unified 64-bits - device/Debug (interpreter): TimedOut (MT1043: Failed to launch the application using the instruments service. Will try launching the app using gdb service.)
  • monotouch-test/iOS Unified 64-bits - device/Debug (interpreter -mscorlib): TimedOut (MT1043: Failed to launch the application using the instruments service. Will try launching the app using gdb service.)
  • monotouch-test/iOS Unified 64-bits - device/Release (interpreter -mscorlib): TimedOut (MT1043: Failed to launch the application using the instruments service. Will try launching the app using gdb service.)
  • mscorlib Part 2/iOS Unified 64-bits - device/Debug: Failed (MT1043: Failed to launch the application using the instruments service. Will try launching the app using gdb service.)
  • mscorlib Part 2/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): Failed (MT1043: Failed to launch the application using the instruments service. Will try launching the app using gdb service.)
  • mscorlib Part 2/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): Failed (MT1043: Failed to launch the application using the instruments service. Will try launching the app using gdb service.)
  • mscorlib Part 2/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Failed (MT1043: Failed to launch the application using the instruments service. Will try launching the app using gdb service.)
  • mscorlib Part 2/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed (MT1043: Failed to launch the application using the instruments service. Will try launching the app using gdb service.)
  • mscorlib Part 2/iOS Unified 64-bits - device/Release: Failed (MT1043: Failed to launch the application using the instruments service. Will try launching the app using gdb service.)
  • mscorlib Part 2/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Failed (MT1043: Failed to launch the application using the instruments service. Will try launching the app using gdb service.)
  • mscorlib Part 2/iOS Unified 64-bits - device/Debug: SGenConc: Failed (MT1043: Failed to launch the application using the instruments service. Will try launching the app using gdb service.)
  • [NUnit] Mono BCL tests group 2/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed (MT1043: Failed to launch the application using the instruments service. Will try launching the app using gdb service.)

Pipeline on Agent XI-W-BULBASAUR

Please sign in to comment.