Skip to content

Commit

Permalink
[generate-type-forwarders] Fix enum values (#10933)
Browse files Browse the repository at this point in the history
Example:

```diff
-CameraUnauthorized = 103
+CameraUnauthorized = 3
-CollaborationDataUnavailable = 304
+CollaborationDataUnavailable = 13
...
```

ref: https://gist.github.com/vs-mobiletools-engineering-service2/3ebe78b99d66d2f2addcbc1d5831e6cd
  • Loading branch information
spouliot authored Mar 23, 2021
1 parent b224899 commit 8056ae1
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/generate-type-forwarders/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -309,24 +309,25 @@ static bool StartParameterTypeMatch (IEnumerable<MethodDefinition> methods, ILis

static void EmitField (StringBuilder sb, FieldDefinition fd, int indent)
{
var strIndent = new string ('\t', indent);
if (fd.DeclaringType.IsEnum) {
if (!fd.IsStatic)
return;
sb.Append (strIndent);
sb.Append ('\t', indent);
sb.Append (fd.Name);
sb.AppendLine (",");
sb.Append (" = ");
sb.Append (fd.Constant);
sb.Append (',');
} else {
sb.Append (strIndent);
sb.Append ('\t', indent);
sb.Append ("public ");
if (fd.IsStatic)
sb.Append ("static ");
EmitTypeName (sb, fd.FieldType);
sb.Append (' ');
sb.Append (fd.Name);
sb.Append (';');
sb.AppendLine ();
}
sb.AppendLine ();
}

static bool HasPropertyInTypeHierarchy (TypeDefinition type, MethodDefinition accessor, out bool valid)
Expand Down

4 comments on commit 8056ae1

@vs-mobiletools-engineering-service2
Copy link
Collaborator

Choose a reason for hiding this comment

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

✅ Tests passed on Build. ✅

Tests passed on Build.

API diff

✅ API Diff from stable

View API diff

Packages generated

View packages

🎉 All 182 tests passed 🎉

Pipeline on Agent XAMBOT-1023'

@vs-mobiletools-engineering-service2
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 on VSTS: device tests tvOS ❌

Tests failed on VSTS: device tests tvOS.

Test results

1 tests failed, 156 tests' device not found, 5 tests passed.

Failed tests

  • monotouch-test/Mac Catalyst/Debug: BuildFailure

Pipeline on Agent XAMTESTMAC14

@vs-mobiletools-engineering-service2
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 on VSTS: device tests iOS32b ❌

Tests failed on VSTS: device tests iOS32b.

Test results

1 tests failed, 169 tests' device not found, 5 tests passed.

Failed tests

  • monotouch-test/Mac Catalyst/Debug: BuildFailure

Pipeline on Agent XI-CAPTAIN-MARVEL

@vs-mobiletools-engineering-service2
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 on VSTS: device tests iOS ❌

Tests failed on VSTS: device tests iOS.

Test results

158 tests failed, 5 tests passed.

Failed tests

  • monotouch-test/Mac Catalyst/Debug: BuildFailure
  • monotouch-test/iOS Unified 64-bits - device/Debug: BuildFailure
  • monotouch-test/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): BuildFailure
  • monotouch-test/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): BuildFailure
  • monotouch-test/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): BuildFailure
  • monotouch-test/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): BuildFailure
  • monotouch-test/iOS Unified 64-bits - device/Release: BuildFailure
  • monotouch-test/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): BuildFailure
  • monotouch-test/iOS Unified 64-bits - device/Debug (dynamic registrar): BuildFailure
  • monotouch-test/iOS Unified 64-bits - device/Release (all optimizations): BuildFailure
  • monotouch-test/iOS Unified 64-bits - device/Debug (all optimizations): BuildFailure
  • monotouch-test/iOS Unified 64-bits - device/Debug: SGenConc: BuildFailure
  • monotouch-test/iOS Unified 64-bits - device/Debug (interpreter): BuildFailure
  • monotouch-test/iOS Unified 64-bits - device/Debug (interpreter -mscorlib): BuildFailure
  • monotouch-test/iOS Unified 64-bits - device/Release (interpreter -mscorlib): BuildFailure
  • fsharp/iOS Unified 64-bits - device/Debug: HarnessException (Harness exception for 'fsharp': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC17'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-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:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/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 'XAMTESTMAC17'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-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:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/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 'XAMTESTMAC17'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-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:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/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 'XAMTESTMAC17'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-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:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/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 'XAMTESTMAC17'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-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:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:283 )
  • fsharp/iOS Unified 64-bits - device/Release: HarnessException (Harness exception for 'fsharp': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC17'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-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:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/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 'XAMTESTMAC17'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-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:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/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 'XAMTESTMAC17'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-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:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/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 'XAMTESTMAC17'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-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:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/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 'XAMTESTMAC17'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-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:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/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 'XAMTESTMAC17'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-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:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/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 'XAMTESTMAC17'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-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:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/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 'XAMTESTMAC17'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-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:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/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 'XAMTESTMAC17'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-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:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:283 )
  • xcframework-test/iOS Unified 64-bits - device/Debug: HarnessException (Harness exception for 'xcframework-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC17'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-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:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:283 )
  • xcframework-test/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): BuildFailure
  • xcframework-test/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for 'xcframework-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC17'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-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:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:283 )
  • xcframework-test/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): BuildFailure
  • xcframework-test/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for 'xcframework-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC17'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-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:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:283 )
  • xcframework-test/iOS Unified 64-bits - device/Release: HarnessException (Harness exception for 'xcframework-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC17'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:308
    at System.Net.Dns.GetHostByName (System.String hostName) [0x00021] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/System/System.Net/Dns.cs:441
    at System.Net.Dns.GetHostEntry (System.String hostNameOrAddress) [0x00052] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-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:247
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x00ac4] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:163
    at Xharness.Jenkins.TestTasks.RunDevice.RunTestAsync () [0x0129e] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunDevice.cs:229
    at Xharness.Jenkins.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/RunTest.cs:109
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/azdo/_work/27/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:283 )
  • xcframework-test/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for 'xcframework-test': System.Net.Sockets.SocketException (0x80004005): Could not resolve host 'XAMTESTMAC17'
    at System.Net.Dns.Error_11001 (System.String hostName) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/ex\n\nThe message from CI is too large for the GitHub comments. You can find the full results here.

Please sign in to comment.