Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[.NET/AudioUnit] Use [UnmanagedCallersOnly] instead of [MonoPInvokeCallback] Partial Fix for #10470 #15808

Merged
merged 6 commits into from
Sep 6, 2022

Conversation

stephen-hawley
Copy link
Contributor

@stephen-hawley stephen-hawley commented Aug 30, 2022

OK - this works, but you're not going to like it.
Why? Well, it comes down to this struct here:

#if NET
        [StructLayout (LayoutKind.Sequential)]
        public unsafe struct AURenderCallbackStruct
        {
                public delegate* unmanaged<IntPtr, AudioRenderActionFlags*, AudioTimeStamp*, uint, uint, IntPtr, AudioUnitStatus> Proc;
//              public delegate* unmanaged<IntPtr, int*, AudioTimeStamp*, uint, uint, IntPtr, int> Proc;
                public IntPtr ProcRefCon;
        }
#else
        [StructLayout (LayoutKind.Sequential)]
        struct AURenderCallbackStruct
        {
                public Delegate Proc;
                public IntPtr ProcRefCon;
        }
#endif

What you're seeing in the NET section is what I think the struct should be for the field Proc which represents the correct signature for the callback function. However, if I use this, I get the following errors:

AudioUnit/AudioUnit.cs(142,100): error CS0246: The type or namespace name 'AudioUnitStatus' could not be found (are you missing a using directive or an assembly reference?)
AudioUnit/AudioUnit.cs(142,38): error CS0246: The type or namespace name 'AudioRenderActionFlags' could not be found (are you missing a using directive or an assembly reference?)

Which is particularly interesting for 3 reasons:
1 - both types are in scope - the actual declaration of a function that meets the contract works with no issue.
2 - making the types fully qualified makes no difference
3 - I AUGraph.cs, which I did first, I initially made a local version of the callback which was declared as an inner type but otherwise declared identically and it worked (!!)

So yes, this is a greasy, greasy, hack.
Why does it work? The types we're smudging are really just 32 bit integers, so no harm no foul. Well, a little foul.

@vs-mobiletools-engineering-service2

This comment has been minimized.

@vs-mobiletools-engineering-service2

This comment has been minimized.

@stephen-hawley stephen-hawley added not-notes-worthy Ignore for release notes run-all-tests Run all our tests. skip-device-tests Skip device tests run-dotnet-tests Run all the .NET tests labels Aug 30, 2022
@vs-mobiletools-engineering-service2

This comment has been minimized.

@vs-mobiletools-engineering-service2

This comment has been minimized.

@vs-mobiletools-engineering-service2

This comment has been minimized.

@vs-mobiletools-engineering-service2

This comment has been minimized.

@vs-mobiletools-engineering-service2

This comment has been minimized.

Copy link
Member

@rolfbjarne rolfbjarne left a comment

Choose a reason for hiding this comment

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

Welcome to the joy of porting broken code...

foreach (RenderDelegate renderer in renderers) {
var tempActionFlags = *_ioActionFlags;
var tempTimeStamp = *_inTimeStamp;
renderer (tempActionFlags, tempTimeStamp, _inBusNumber, _inNumberFrames, buffers);
Copy link
Member

Choose a reason for hiding this comment

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

The temporary values here are unnecessary, because due to an incorrect binding, the ioActionFlags and inTimeStamp values aren't updated by the renderer callback:

Suggested change
renderer (tempActionFlags, tempTimeStamp, _inBusNumber, _inNumberFrames, buffers);
renderer (*_ioActionFlags, *_inTimeStamp, _inBusNumber, _inNumberFrames, buffers);

These arguments should be ref arguments in the RenderDelegate:

public delegate AudioUnitStatus RenderDelegate (AudioUnitRenderActionFlags actionFlags, AudioTimeStamp timeStamp, uint busNumber, uint numberFrames, AudioBuffers data);

But that would be a breaking change, so we can't do that (we'd have to add (and correct) API instead of changing the existing one).

In any case, that's completely out of scope for this PR. I'd just make the .NET code just as broken as the non-.NET code, and maybe we'll get around to fixing it properly one day.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Huh. I looked at this through a peephole and just saw ref args and figured that I should honor the ref-ness.

#if NET
AudioUnitRenderActionFlags tempActionFlags = *actionFlags;
var tempTimeStamp = *timeStamp;
var returnValue = callback (tempActionFlags, tempTimeStamp, busNumber, numberFrames, buffers);
Copy link
Member

Choose a reason for hiding this comment

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

Same here.

Copy link
Member

Choose a reason for hiding this comment

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

Just one left now!

src/AudioUnit/AudioUnit.cs Outdated Show resolved Hide resolved
src/AudioUnit/AudioUnit.cs Outdated Show resolved Hide resolved
@vs-mobiletools-engineering-service2

This comment has been minimized.

@vs-mobiletools-engineering-service2

This comment has been minimized.

@vs-mobiletools-engineering-service2

This comment has been minimized.

@vs-mobiletools-engineering-service2

This comment has been minimized.

@vs-mobiletools-engineering-service2

This comment has been minimized.

@vs-mobiletools-engineering-service2

This comment has been minimized.

@vs-mobiletools-engineering-service2
Copy link
Collaborator

🔥 [CI Build] Test results 🔥

Test results

❌ Tests failed on VSTS: simulator tests

0 tests crashed, 206 tests failed, 4126 tests passed.

Failures

❌ bcl tests

3 tests failed, 225 tests passed.
  • trimmode link/Mac Catalyst [dotnet]/Debug [dotnet]: Failed (Test run failed.
    Tests run: 129 Passed: 121 Inconclusive: 0 Failed: 1 Ignored: 7)
  • trimmode link/Mac Catalyst [dotnet]/Release [dotnet]: Failed (Test run failed.
    Tests run: 129 Passed: 120 Inconclusive: 0 Failed: 1 Ignored: 8)
  • introspection/watchOS 32-bits - simulator/Debug (watchOS 6.0): Crashed Known issue: HE0038)

Html Report (VSDrops) Download

❌ cecil tests

1 tests failed, 227 tests passed.
  • introspection/watchOS 32-bits - simulator/Debug (watchOS 6.0): Crashed Known issue: HE0038)

Html Report (VSDrops) Download

❌ dotnettests tests

4 tests failed, 224 tests passed.
  • monotouch-test/Mac [dotnet]/Debug [dotnet]: BuildFailure (Harness exception for 'monotouch-test': System.Exception: Failed to list the files in the directory /Users/builder/azdo/_work/2/s/xamarin-macios/tests/fsharplibrary/dotnet/macOS (TimedOut: True ExitCode: 0):
    Running git ls-files
    Makefile
    fsharplibrary.fsproj
    Process 66019 didn't exit within 00:01:00 and will be killed
    Killing process tree of 66019...
    Pids to kill: 66019
    Running lldb diagnostics for pid 66019
    Printing backtrace for pid=66019
    (lldb) command source -s 0 '/var/folders/7p/bd0fstvx7z53x5d9r87zjtbh0000gn/T/tmpbbe1c7.tmp'
    Executing commands in '/var/folders/7p/bd0fstvx7z53x5d9r87zjtbh0000gn/T/tmpbbe1c7.tmp'.
    (lldb) process attach --pid 66019
    error: attach failed: no such process.
    66019 Execution timed out after 60 seconds and the process was killed.
    Process git exited with 0
    at Xharness.TestProject.ListFilesAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, System.String test_dir, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager) [0x00218] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:103
    at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary2[TKey,TValue] allProjectReferences) [0x00340] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:167 at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary2[TKey,TValue] allProjectReferences) [0x0078b] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:208
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00117] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:260 )
  • monotouch-test/Mac [dotnet]/Debug (static registrar) [dotnet]: BuildFailure (Harness exception for 'monotouch-test': System.Exception: Failed to list the files in the directory /Users/builder/azdo/_work/2/s/xamarin-macios/tests/fsharplibrary/dotnet/macOS (TimedOut: True ExitCode: 0):
    Running git ls-files
    Makefile
    fsharplibrary.fsproj
    Process 66019 didn't exit within 00:01:00 and will be killed
    Killing process tree of 66019...
    Pids to kill: 66019
    Running lldb diagnostics for pid 66019
    Printing backtrace for pid=66019
    (lldb) command source -s 0 '/var/folders/7p/bd0fstvx7z53x5d9r87zjtbh0000gn/T/tmpbbe1c7.tmp'
    Executing commands in '/var/folders/7p/bd0fstvx7z53x5d9r87zjtbh0000gn/T/tmpbbe1c7.tmp'.
    (lldb) process attach --pid 66019
    error: attach failed: no such process.
    66019 Execution timed out after 60 seconds and the process was killed.
    Process git exited with 0
    at Xharness.TestProject.ListFilesAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, System.String test_dir, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager) [0x00218] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:103
    at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary2[TKey,TValue] allProjectReferences) [0x00340] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:167 at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary2[TKey,TValue] allProjectReferences) [0x0078b] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:208
    at Xharness.Jenkins.TestVariationsFactory+<>c__DisplayClass4_2`1[T].b__0 () [0x00044] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/Jenkins/TestVariationsFactory.cs:216
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00117] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:260 )
  • introspection/watchOS 32-bits - simulator/Debug (watchOS 6.0): Crashed Known issue: HE0038)
  • mmptest/macOS/Debug: Failed (Execution failed with exit code 2)

Html Report (VSDrops) Download

❌ fsharp tests

1 tests failed, 227 tests passed.
  • introspection/watchOS 32-bits - simulator/Debug (watchOS 6.0): Crashed Known issue: HE0038)

Html Report (VSDrops) Download

❌ framework tests

1 tests failed, 227 tests passed.
  • introspection/watchOS 32-bits - simulator/Debug (watchOS 6.0): Crashed Known issue: HE0038)

Html Report (VSDrops) Download

❌ generator tests

1 tests failed, 227 tests passed.
  • introspection/watchOS 32-bits - simulator/Debug (watchOS 6.0): Crashed Known issue: HE0038)

Html Report (VSDrops) Download

❌ interdependent_binding_projects tests

87 tests failed, 141 tests passed.
  • link sdk/Mac Catalyst [dotnet]/Debug [dotnet]: Failed (Test run failed.
    Tests run: 129 Passed: 121 Inconclusive: 0 Failed: 1 Ignored: 7)
  • link sdk/Mac Catalyst [dotnet]/Release [dotnet]: Failed (Test run failed.
    Tests run: 129 Passed: 120 Inconclusive: 0 Failed: 1 Ignored: 8)
  • trimmode link/Mac [dotnet]/Debug [dotnet]: Failed (Test run failed.
    Tests run: 117 Passed: 108 Inconclusive: 0 Failed: 1 Ignored: 8)
  • trimmode link/Mac [dotnet]/Release [dotnet]: Failed (Test run failed.
    Tests run: 117 Passed: 107 Inconclusive: 0 Failed: 1 Ignored: 9)
  • trimmode link/Mac Catalyst [dotnet]/Release [dotnet]: Failed (Test run failed.
    Tests run: 129 Passed: 120 Inconclusive: 0 Failed: 1 Ignored: 8)
  • mono-native-compat/Mac Modern/Debug: BuildFailure
  • mono-native-compat/Mac Full/Debug: BuildFailure
  • mono-native-compat/iOS Unified 64-bits - simulator/Debug: BuildFailure
  • mono-native-compat/iOS Unified Today Extension 64-bits - simulator/Debug: BuildFailure
  • mono-native-compat/tvOS - simulator/Debug: BuildFailure
  • mono-native-compat/watchOS 32-bits - simulator/Debug: BuildFailure
  • mono-native-unified/Mac Modern/Debug: BuildFailure
  • mono-native-unified/Mac Full/Debug: BuildFailure
  • mono-native-unified/iOS Unified 64-bits - simulator/Debug: BuildFailure
  • mono-native-unified/iOS Unified Today Extension 64-bits - simulator/Debug: BuildFailure
  • mono-native-unified/tvOS - simulator/Debug: BuildFailure
  • mono-native-unified/watchOS 32-bits - simulator/Debug: BuildFailure
  • monotouch-test/iOS Unified 64-bits - simulator/Debug: BuildFailure
  • monotouch-test/iOS Unified 64-bits - simulator/Debug (LinkSdk): BuildFailure
  • monotouch-test/iOS Unified 64-bits - simulator/Debug (static registrar): BuildFailure
  • monotouch-test/iOS Unified 64-bits - simulator/Release (all optimizations): BuildFailure
  • monotouch-test/tvOS - simulator/Debug: BuildFailure
  • monotouch-test/tvOS - simulator/Debug (LinkSdk): BuildFailure
  • monotouch-test/tvOS - simulator/Debug (static registrar): BuildFailure
  • monotouch-test/tvOS - simulator/Release (all optimizations): BuildFailure
  • [NUnit] Mono BCL tests group 1/iOS Unified 64-bits - simulator/Debug: BuildFailure (Harness exception for '[NUnit] Mono BCL tests group 1': System.IO.FileNotFoundException: Could not find file "/Users/builder/azdo/_work/2/s/xamarin-macios/tests/bcl-test/generated/iOS/BCL tests group 1/BCL tests group 1.csproj"
    File name: '/Users/builder/azdo/work/2/s/xamarin-macios/tests/bcl-test/generated/iOS/BCL tests group 1/BCL tests group 1.csproj'
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x00259] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:274
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean isAsync, System.Boolean anonymous) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:149
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:86
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess)
    at Microsoft.DotNet.XHarness.iOS.Shared.Utilities.PListExtensions.LoadWithoutNetworkAccess (System.Xml.XmlDocument doc, System.String filename) [0x00000] in /
    /src/Microsoft.DotNet.XHarness.iOS.Shared/Utilities/PlistExtensions.cs:29
    at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary`2[TKey,TValue] allProjectReferences) [0x00105] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:122
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00117] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:260 )
  • [NUnit] Mono BCL tests group 1/tvOS - simulator/Debug: BuildFailure (Harness exception for '[NUnit] Mono BCL tests group 1': System.IO.FileNotFoundException: Could not find file "/Users/builder/azdo/_work/2/s/xamarin-macios/tests/bcl-test/generated/TvOS/BCL tests group 1/BCL tests group 1-tvos.csproj"
    File name: '/Users/builder/azdo/work/2/s/xamarin-macios/tests/bcl-test/generated/TvOS/BCL tests group 1/BCL tests group 1-tvos.csproj'
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x00259] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:274
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean isAsync, System.Boolean anonymous) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:149
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:86
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess)
    at Microsoft.DotNet.XHarness.iOS.Shared.Utilities.PListExtensions.LoadWithoutNetworkAccess (System.Xml.XmlDocument doc, System.String filename) [0x00000] in /
    /src/Microsoft.DotNet.XHarness.iOS.Shared/Utilities/PlistExtensions.cs:29
    at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary`2[TKey,TValue] allProjectReferences) [0x00105] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:122
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00117] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:260 )
  • [NUnit] Mono BCL tests group 2/iOS Unified 64-bits - simulator/Debug: BuildFailure (Harness exception for '[NUnit] Mono BCL tests group 2': System.IO.FileNotFoundException: Could not find file "/Users/builder/azdo/_work/2/s/xamarin-macios/tests/bcl-test/generated/iOS/BCL tests group 2/BCL tests group 2.csproj"
    File name: '/Users/builder/azdo/work/2/s/xamarin-macios/tests/bcl-test/generated/iOS/BCL tests group 2/BCL tests group 2.csproj'
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x00259] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:274
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean isAsync, System.Boolean anonymous) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:149
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:86
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess)
    at Microsoft.DotNet.XHarness.iOS.Shared.Utilities.PListExtensions.LoadWithoutNetworkAccess (System.Xml.XmlDocument doc, System.String filename) [0x00000] in /
    /src/Microsoft.DotNet.XHarness.iOS.Shared/Utilities/PlistExtensions.cs:29
    at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary`2[TKey,TValue] allProjectReferences) [0x00105] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:122
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00117] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:260 )
  • [NUnit] Mono BCL tests group 2/tvOS - simulator/Debug: BuildFailure (Harness exception for '[NUnit] Mono BCL tests group 2': System.IO.FileNotFoundException: Could not find file "/Users/builder/azdo/_work/2/s/xamarin-macios/tests/bcl-test/generated/TvOS/BCL tests group 2/BCL tests group 2-tvos.csproj"
    File name: '/Users/builder/azdo/work/2/s/xamarin-macios/tests/bcl-test/generated/TvOS/BCL tests group 2/BCL tests group 2-tvos.csproj'
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x00259] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:274
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean isAsync, System.Boolean anonymous) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:149
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:86
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess)
    at Microsoft.DotNet.XHarness.iOS.Shared.Utilities.PListExtensions.LoadWithoutNetworkAccess (System.Xml.XmlDocument doc, System.String filename) [0x00000] in /
    /src/Microsoft.DotNet.XHarness.iOS.Shared/Utilities/PlistExtensions.cs:29
    at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary`2[TKey,TValue] allProjectReferences) [0x00105] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:122
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00117] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:260 )
  • [xUnit] Mono BCL tests group 3/iOS Unified 64-bits - simulator/Debug: BuildFailure (Harness exception for '[xUnit] Mono BCL tests group 3': System.IO.FileNotFoundException: Could not find file "/Users/builder/azdo/_work/2/s/xamarin-macios/tests/bcl-test/generated/iOS/BCL tests group 3/BCL tests group 3.csproj"
    File name: '/Users/builder/azdo/work/2/s/xamarin-macios/tests/bcl-test/generated/iOS/BCL tests group 3/BCL tests group 3.csproj'
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x00259] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:274
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean isAsync, System.Boolean anonymous) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:149
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:86
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess)
    at Microsoft.DotNet.XHarness.iOS.Shared.Utilities.PListExtensions.LoadWithoutNetworkAccess (System.Xml.XmlDocument doc, System.String filename) [0x00000] in /
    /src/Microsoft.DotNet.XHarness.iOS.Shared/Utilities/PlistExtensions.cs:29
    at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary`2[TKey,TValue] allProjectReferences) [0x00105] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:122
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00117] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:260 )
  • [xUnit] Mono BCL tests group 3/tvOS - simulator/Debug: BuildFailure (Harness exception for '[xUnit] Mono BCL tests group 3': System.IO.FileNotFoundException: Could not find file "/Users/builder/azdo/_work/2/s/xamarin-macios/tests/bcl-test/generated/TvOS/BCL tests group 3/BCL tests group 3-tvos.csproj"
    File name: '/Users/builder/azdo/work/2/s/xamarin-macios/tests/bcl-test/generated/TvOS/BCL tests group 3/BCL tests group 3-tvos.csproj'
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x00259] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:274
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean isAsync, System.Boolean anonymous) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:149
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:86
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess)
    at Microsoft.DotNet.XHarness.iOS.Shared.Utilities.PListExtensions.LoadWithoutNetworkAccess (System.Xml.XmlDocument doc, System.String filename) [0x00000] in /
    /src/Microsoft.DotNet.XHarness.iOS.Shared/Utilities/PlistExtensions.cs:29
    at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary`2[TKey,TValue] allProjectReferences) [0x00105] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:122
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00117] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:260 )
  • [xUnit] Mono BCL tests group 4/iOS Unified 64-bits - simulator/Debug: BuildFailure (Harness exception for '[xUnit] Mono BCL tests group 4': System.IO.FileNotFoundException: Could not find file "/Users/builder/azdo/_work/2/s/xamarin-macios/tests/bcl-test/generated/iOS/BCL tests group 4/BCL tests group 4.csproj"
    File name: '/Users/builder/azdo/work/2/s/xamarin-macios/tests/bcl-test/generated/iOS/BCL tests group 4/BCL tests group 4.csproj'
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x00259] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:274
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean isAsync, System.Boolean anonymous) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:149
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:86
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess)
    at Microsoft.DotNet.XHarness.iOS.Shared.Utilities.PListExtensions.LoadWithoutNetworkAccess (System.Xml.XmlDocument doc, System.String filename) [0x00000] in /
    /src/Microsoft.DotNet.XHarness.iOS.Shared/Utilities/PlistExtensions.cs:29
    at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary`2[TKey,TValue] allProjectReferences) [0x00105] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:122
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00117] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:260 )
  • [xUnit] Mono BCL tests group 4/tvOS - simulator/Debug: BuildFailure (Harness exception for '[xUnit] Mono BCL tests group 4': System.IO.FileNotFoundException: Could not find file "/Users/builder/azdo/_work/2/s/xamarin-macios/tests/bcl-test/generated/TvOS/BCL tests group 4/BCL tests group 4-tvos.csproj"
    File name: '/Users/builder/azdo/work/2/s/xamarin-macios/tests/bcl-test/generated/TvOS/BCL tests group 4/BCL tests group 4-tvos.csproj'
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x00259] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:274
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean isAsync, System.Boolean anonymous) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:149
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:86
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess)
    at Microsoft.DotNet.XHarness.iOS.Shared.Utilities.PListExtensions.LoadWithoutNetworkAccess (System.Xml.XmlDocument doc, System.String filename) [0x00000] in /
    /src/Microsoft.DotNet.XHarness.iOS.Shared/Utilities/PlistExtensions.cs:29
    at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary`2[TKey,TValue] allProjectReferences) [0x00105] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:122
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00117] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:260 )
  • [xUnit] Mono BCL tests group 5/iOS Unified 64-bits - simulator/Debug: BuildFailure (Harness exception for '[xUnit] Mono BCL tests group 5': System.IO.FileNotFoundException: Could not find file "/Users/builder/azdo/_work/2/s/xamarin-macios/tests/bcl-test/generated/iOS/BCL tests group 5/BCL tests group 5.csproj"
    File name: '/Users/builder/azdo/work/2/s/xamarin-macios/tests/bcl-test/generated/iOS/BCL tests group 5/BCL tests group 5.csproj'
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x00259] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:274
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean isAsync, System.Boolean anonymous) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:149
    at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:86
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess)
    at Microsoft.DotNet.XHarness.iOS.Shared.Utilities.PListExtensions.LoadWithoutNetworkAccess (System.Xml.XmlDocument doc, System.String filename) [0x00000] in /
    /src/Microsoft.DotNet.XHarness.iOS.Shared/Utilities/PlistExtensions.cs:29
    at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary`2[TKey,TValue] allProjectReferences) [0x00105] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:122
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00117] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:260 )
  • [xUnit] Mono BCL tests group 5/tvOS - simulator/Debug: BuildFailure (Harness exception for '[xUnit] Mono BCL tests group 5': System.IO.FileNotFoundException: Could not find fil\n\nThe message from CI is too large for the GitHub comments. You can find the full results here.

@vs-mobiletools-engineering-service2

This comment has been minimized.

@vs-mobiletools-engineering-service2

This comment has been minimized.

@vs-mobiletools-engineering-service2

This comment has been minimized.

@vs-mobiletools-engineering-service2

This comment has been minimized.

@vs-mobiletools-engineering-service2
Copy link
Collaborator

🔥 [CI Build] Test results 🔥

Test results

❌ Tests failed on VSTS: simulator tests

0 tests crashed, 37 tests failed, 4295 tests passed.

Failures

❌ bcl tests

1 tests failed, 227 tests passed.
  • introspection/watchOS 32-bits - simulator/Debug (watchOS 6.0): Crashed Known issue: HE0038)

Html Report (VSDrops) Download

❌ cecil tests

1 tests failed, 227 tests passed.
  • introspection/watchOS 32-bits - simulator/Debug (watchOS 6.0): Crashed Known issue: HE0038)

Html Report (VSDrops) Download

❌ dotnettests tests

12 tests failed, 216 tests passed.
  • monotouch-test/Mac Catalyst [dotnet]/Debug [dotnet]: BuildFailure (Harness exception for 'monotouch-test': System.Exception: Failed to list the files in the directory /Users/builder/azdo/_work/2/s/xamarin-macios/tests/fsharplibrary/dotnet/MacCatalyst (TimedOut: True ExitCode: 0):
    Running git ls-files
    Makefile
    fsharplibrary.fsproj
    Process 28940 didn't exit within 00:01:00 and will be killed
    Killing process tree of 28940...
    Pids to kill: 28940
    Running lldb diagnostics for pid 28940
    Printing backtrace for pid=28940
    (lldb) command source -s 0 '/var/folders/13/5g_xn9lj7msgl3t_0k9ybl_h0000gn/T/tmp2361f6f1.tmp'
    Executing commands in '/var/folders/13/5g_xn9lj7msgl3t_0k9ybl_h0000gn/T/tmp2361f6f1.tmp'.
    (lldb) process attach --pid 28940
    error: attach failed: no such process.
    28940 Execution timed out after 60 seconds and the process was killed.
    Process git exited with 0
    at Xharness.TestProject.ListFilesAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, System.String test_dir, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager) [0x00218] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:103
    at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary2[TKey,TValue] allProjectReferences) [0x00340] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:167 at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary2[TKey,TValue] allProjectReferences) [0x0078b] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:208
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00117] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:260 )
  • monotouch-test/iOS Unified 64-bits - simulator/Debug [dotnet]: BuildFailure (Harness exception for 'monotouch-test': System.Exception: Failed to list the files in the directory /Users/builder/azdo/_work/2/s/xamarin-macios/tests/fsharplibrary/dotnet/iOS (TimedOut: True ExitCode: 0):
    Running git ls-files
    Makefile
    fsharplibrary.fsproj
    Process 28363 didn't exit within 00:01:00 and will be killed
    Killing process tree of 28363...
    Pids to kill: 28363
    Running lldb diagnostics for pid 28363
    Printing backtrace for pid=28363
    (lldb) command source -s 0 '/var/folders/13/5g_xn9lj7msgl3t_0k9ybl_h0000gn/T/tmp7c532a0c.tmp'
    Executing commands in '/var/folders/13/5g_xn9lj7msgl3t_0k9ybl_h0000gn/T/tmp7c532a0c.tmp'.
    (lldb) process attach --pid 28363
    error: attach failed: no such process.
    28363 Execution timed out after 60 seconds and the process was killed.
    Process git exited with 0
    at Xharness.TestProject.ListFilesAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, System.String test_dir, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager) [0x00218] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:103
    at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary2[TKey,TValue] allProjectReferences) [0x00340] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:167 at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary2[TKey,TValue] allProjectReferences) [0x0078b] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:208
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00117] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:260 )
  • monotouch-test/iOS Unified 64-bits - simulator/Debug (LinkSdk) [dotnet]: BuildFailure (Harness exception for 'monotouch-test': System.Exception: Failed to list the files in the directory /Users/builder/azdo/_work/2/s/xamarin-macios/tests/fsharplibrary/dotnet/iOS (TimedOut: True ExitCode: 0):
    Running git ls-files
    Makefile
    fsharplibrary.fsproj
    Process 28363 didn't exit within 00:01:00 and will be killed
    Killing process tree of 28363...
    Pids to kill: 28363
    Running lldb diagnostics for pid 28363
    Printing backtrace for pid=28363
    (lldb) command source -s 0 '/var/folders/13/5g_xn9lj7msgl3t_0k9ybl_h0000gn/T/tmp7c532a0c.tmp'
    Executing commands in '/var/folders/13/5g_xn9lj7msgl3t_0k9ybl_h0000gn/T/tmp7c532a0c.tmp'.
    (lldb) process attach --pid 28363
    error: attach failed: no such process.
    28363 Execution timed out after 60 seconds and the process was killed.
    Process git exited with 0
    at Xharness.TestProject.ListFilesAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, System.String test_dir, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager) [0x00218] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:103
    at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary2[TKey,TValue] allProjectReferences) [0x00340] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:167 at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary2[TKey,TValue] allProjectReferences) [0x0078b] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:208
    at Xharness.Jenkins.TestVariationsFactory+<>c__DisplayClass4_2`1[T].b__0 () [0x00044] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/Jenkins/TestVariationsFactory.cs:216
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00117] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:260 )
  • monotouch-test/iOS Unified 64-bits - simulator/Debug (static registrar) [dotnet]: BuildFailure (Harness exception for 'monotouch-test': System.Exception: Failed to list the files in the directory /Users/builder/azdo/_work/2/s/xamarin-macios/tests/fsharplibrary/dotnet/iOS (TimedOut: True ExitCode: 0):
    Running git ls-files
    Makefile
    fsharplibrary.fsproj
    Process 28363 didn't exit within 00:01:00 and will be killed
    Killing process tree of 28363...
    Pids to kill: 28363
    Running lldb diagnostics for pid 28363
    Printing backtrace for pid=28363
    (lldb) command source -s 0 '/var/folders/13/5g_xn9lj7msgl3t_0k9ybl_h0000gn/T/tmp7c532a0c.tmp'
    Executing commands in '/var/folders/13/5g_xn9lj7msgl3t_0k9ybl_h0000gn/T/tmp7c532a0c.tmp'.
    (lldb) process attach --pid 28363
    error: attach failed: no such process.
    28363 Execution timed out after 60 seconds and the process was killed.
    Process git exited with 0
    at Xharness.TestProject.ListFilesAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, System.String test_dir, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager) [0x00218] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:103
    at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary2[TKey,TValue] allProjectReferences) [0x00340] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:167 at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary2[TKey,TValue] allProjectReferences) [0x0078b] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:208
    at Xharness.Jenkins.TestVariationsFactory+<>c__DisplayClass4_2`1[T].b__0 () [0x00044] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/Jenkins/TestVariationsFactory.cs:216
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00117] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:260 )
  • monotouch-test/iOS Unified 64-bits - simulator/Release (all optimizations) [dotnet]: BuildFailure (Harness exception for 'monotouch-test': System.Exception: Failed to list the files in the directory /Users/builder/azdo/_work/2/s/xamarin-macios/tests/fsharplibrary/dotnet/iOS (TimedOut: True ExitCode: 0):
    Running git ls-files
    Makefile
    fsharplibrary.fsproj
    Process 28363 didn't exit within 00:01:00 and will be killed
    Killing process tree of 28363...
    Pids to kill: 28363
    Running lldb diagnostics for pid 28363
    Printing backtrace for pid=28363
    (lldb) command source -s 0 '/var/folders/13/5g_xn9lj7msgl3t_0k9ybl_h0000gn/T/tmp7c532a0c.tmp'
    Executing commands in '/var/folders/13/5g_xn9lj7msgl3t_0k9ybl_h0000gn/T/tmp7c532a0c.tmp'.
    (lldb) process attach --pid 28363
    error: attach failed: no such process.
    28363 Execution timed out after 60 seconds and the process was killed.
    Process git exited with 0
    at Xharness.TestProject.ListFilesAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, System.String test_dir, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager) [0x00218] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:103
    at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary2[TKey,TValue] allProjectReferences) [0x00340] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:167 at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary2[TKey,TValue] allProjectReferences) [0x0078b] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:208
    at Xharness.Jenkins.TestVariationsFactory+<>c__DisplayClass4_2`1[T].b__0 () [0x00044] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/Jenkins/TestVariationsFactory.cs:216
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00117] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:260 )
  • monotouch-test/tvOS - simulator/Debug [dotnet]: BuildFailure (Harness exception for 'monotouch-test': System.Exception: Failed to list the files in the directory /Users/builder/azdo/_work/2/s/xamarin-macios/tests/fsharplibrary/dotnet/tvOS (TimedOut: True ExitCode: 0):
    Running git ls-files
    Makefile
    fsharplibrary.fsproj
    Process 28352 didn't exit within 00:01:00 and will be killed
    Killing process tree of 28352...
    Pids to kill: 28352
    Running lldb diagnostics for pid 28352
    Printing backtrace for pid=28352
    (lldb) command source -s 0 '/var/folders/13/5g_xn9lj7msgl3t_0k9ybl_h0000gn/T/tmp28b948a4.tmp'
    Executing commands in '/var/folders/13/5g_xn9lj7msgl3t_0k9ybl_h0000gn/T/tmp28b948a4.tmp'.
    (lldb) process attach --pid 28352
    error: attach failed: no such process.
    28352 Execution timed out after 60 seconds and the process was killed.
    Process git exited with 0
    at Xharness.TestProject.ListFilesAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, System.String test_dir, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager) [0x00218] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:103
    at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary2[TKey,TValue] allProjectReferences) [0x00340] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:167 at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary2[TKey,TValue] allProjectReferences) [0x0078b] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:208
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00117] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:260 )
  • monotouch-test/tvOS - simulator/Debug (LinkSdk) [dotnet]: BuildFailure (Harness exception for 'monotouch-test': System.Exception: Failed to list the files in the directory /Users/builder/azdo/_work/2/s/xamarin-macios/tests/fsharplibrary/dotnet/tvOS (TimedOut: True ExitCode: 0):
    Running git ls-files
    Makefile
    fsharplibrary.fsproj
    Process 28352 didn't exit within 00:01:00 and will be killed
    Killing process tree of 28352...
    Pids to kill: 28352
    Running lldb diagnostics for pid 28352
    Printing backtrace for pid=28352
    (lldb) command source -s 0 '/var/folders/13/5g_xn9lj7msgl3t_0k9ybl_h0000gn/T/tmp28b948a4.tmp'
    Executing commands in '/var/folders/13/5g_xn9lj7msgl3t_0k9ybl_h0000gn/T/tmp28b948a4.tmp'.
    (lldb) process attach --pid 28352
    error: attach failed: no such process.
    28352 Execution timed out after 60 seconds and the process was killed.
    Process git exited with 0
    at Xharness.TestProject.ListFilesAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, System.String test_dir, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager) [0x00218] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:103
    at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary2[TKey,TValue] allProjectReferences) [0x00340] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:167 at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary2[TKey,TValue] allProjectReferences) [0x0078b] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:208
    at Xharness.Jenkins.TestVariationsFactory+<>c__DisplayClass4_2`1[T].b__0 () [0x00044] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/Jenkins/TestVariationsFactory.cs:216
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00117] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:260 )
  • monotouch-test/tvOS - simulator/Debug (static registrar) [dotnet]: BuildFailure (Harness exception for 'monotouch-test': System.Exception: Failed to list the files in the directory /Users/builder/azdo/_work/2/s/xamarin-macios/tests/fsharplibrary/dotnet/tvOS (TimedOut: True ExitCode: 0):
    Running git ls-files
    Makefile
    fsharplibrary.fsproj
    Process 28352 didn't exit within 00:01:00 and will be killed
    Killing process tree of 28352...
    Pids to kill: 28352
    Running lldb diagnostics for pid 28352
    Printing backtrace for pid=28352
    (lldb) command source -s 0 '/var/folders/13/5g_xn9lj7msgl3t_0k9ybl_h0000gn/T/tmp28b948a4.tmp'
    Executing commands in '/var/folders/13/5g_xn9lj7msgl3t_0k9ybl_h0000gn/T/tmp28b948a4.tmp'.
    (lldb) process attach --pid 28352
    error: attach failed: no such process.
    28352 Execution timed out after 60 seconds and the process was killed.
    Process git exited with 0
    at Xharness.TestProject.ListFilesAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, System.String test_dir, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager) [0x00218] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:103
    at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary2[TKey,TValue] allProjectReferences) [0x00340] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:167 at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary2[TKey,TValue] allProjectReferences) [0x0078b] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:208
    at Xharness.Jenkins.TestVariationsFactory+<>c__DisplayClass4_2`1[T].b__0 () [0x00044] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/Jenkins/TestVariationsFactory.cs:216
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00117] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:260 )
  • monotouch-test/tvOS - simulator/Release (all optimizations) [dotnet]: BuildFailure (Harness exception for 'monotouch-test': System.Exception: Failed to list the files in the directory /Users/builder/azdo/_work/2/s/xamarin-macios/tests/fsharplibrary/dotnet/tvOS (TimedOut: True ExitCode: 0):
    Running git ls-files
    Makefile
    fsharplibrary.fsproj
    Process 28352 didn't exit within 00:01:00 and will be killed
    Killing process tree of 28352...
    Pids to kill: 28352
    Running lldb diagnostics for pid 28352
    Printing backtrace for pid=28352
    (lldb) command source -s 0 '/var/folders/13/5g_xn9lj7msgl3t_0k9ybl_h0000gn/T/tmp28b948a4.tmp'
    Executing commands in '/var/folders/13/5g_xn9lj7msgl3t_0k9ybl_h0000gn/T/tmp28b948a4.tmp'.
    (lldb) process attach --pid 28352
    error: attach failed: no such process.
    28352 Execution timed out after 60 seconds and the process was killed.
    Process git exited with 0
    at Xharness.TestProject.ListFilesAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, System.String test_dir, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager) [0x00218] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:103
    at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary2[TKey,TValue] allProjectReferences) [0x00340] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:167 at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary2[TKey,TValue] allProjectReferences) [0x0078b] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:208
    at Xharness.Jenkins.TestVariationsFactory+<>c__DisplayClass4_2`1[T].b__0 () [0x00044] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/Jenkins/TestVariationsFactory.cs:216
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00117] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:260 )
  • introspection/iOS Unified 64-bits - simulator/Debug (iOS 12.4) [dotnet]: BuildFailure (Harness exception for 'introspection': System.Exception: Failed to list the files in the directory /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/tmp-test-dir/introspection3172 (TimedOut: True ExitCode: 0):
    Running git ls-files
    Process 28355 didn't exit within 00:01:00 and will be killed
    Killing process tree of 28355...
    Pids to kill: 28355
    Running lldb diagnostics for pid 28355
    Printing backtrace for pid=28355
    (lldb) command source -s 0 '/var/folders/13/5g_xn9lj7msgl3t_0k9ybl_h0000gn/T/tmp5102c3e6.tmp'
    Executing commands in '/var/folders/13/5g_xn9lj7msgl3t_0k9ybl_h0000gn/T/tmp5102c3e6.tmp'.
    (lldb) process attach --pid 28355
    error: attach failed: no such process.
    28355 Execution timed out after 60 seconds and the process was killed.
    Process git exited with 0
    at Xharness.TestProject.ListFilesAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, System.String test_dir, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager) [0x00218] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:103
    at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary2[TKey,TValue] allProjectReferences) [0x00340] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:167 at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary2[TKey,TValue] allProjectReferences) [0x0078b] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:208
    at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary2[TKey,TValue] allProjectReferences) [0x0078b] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:208 at Xharness.Jenkins.TestVariationsFactory+<>c__DisplayClass4_21[T].b__0 () [0x00106] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/Jenkins/TestVariationsFactory.cs:217
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00117] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:260 )
  • introspection/tvOS - simulator/Debug (tvOS 12.4) [dotnet]: BuildFailure (Harness exception for 'introspection': System.Exception: Failed to list the files in the directory /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/tmp-test-dir/introspection3173 (TimedOut: True ExitCode: 0):
    Running git ls-files
    Process 28356 didn't exit within 00:01:00 and will be killed
    Killing process tree of 28356...
    Pids to kill: 28356
    Running lldb diagnostics for pid 28356
    Printing backtrace for pid=28356
    (lldb) command source -s 0 '/var/folders/13/5g_xn9lj7msgl3t_0k9ybl_h0000gn/T/tmp3431cfff.tmp'
    Executing commands in '/var/folders/13/5g_xn9lj7msgl3t_0k9ybl_h0000gn/T/tmp3431cfff.tmp'.
    (lldb) process attach --pid 28356
    error: attach failed: no such process.
    28356 Execution timed out after 60 seconds and the process was killed.
    Process git exited with 0
    at Xharness.TestProject.ListFilesAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, System.String test_dir, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager) [0x00218] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:103
    at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary2[TKey,TValue] allProjectReferences) [0x00340] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:167 at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary2[TKey,TValue] allProjectReferences) [0x0078b] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:208
    at Xharness.TestProject.CreateCopyAsync (Microsoft.DotNet.XHarness.Common.Logging.ILog log, Microsoft.DotNet.XHarness.Common.Execution.IProcessManager processManager, Xharness.Jenkins.TestTasks.ITestTask test, System.String rootDirectory, System.Collections.Generic.Dictionary2[TKey,TValue] allProjectReferences) [0x0078b] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/TestProject.cs:208 at Xharness.Jenkins.TestVariationsFactory+<>c__DisplayClass4_21[T].b__0 () [0x00106] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/Jenkins/TestVariationsFactory.cs:217
    at Xharness.Jenkins.TestTasks.TestTasks.RunInternalAsync () [0x00117] in /Users/builder/azdo/_work/2/s/xamarin-macios/tests/xharness/Jenkins/TestTasks/TestTask.cs:260 )
  • introspection/watchOS 32-bits - simulator/Debug (watchOS 6.0): Crashed Known issue: HE0038)

Html Report (VSDrops) Download

❌ fsharp tests

1 tests failed, 227 tests passed.
  • introspection/watchOS 32-bits - simulator/Debug (watchOS 6.0): Crashed Known issue: HE0038)

Html Report (VSDrops) Download

❌ framework tests

2 tests failed, 226 tests passed.
  • monotouch-test/watchOS 32-bits - simulator/Release (all optimizations): TimedOut
  • introspection/watchOS 32-bits - simulator/Debug (watchOS 6.0): Crashed Known issue: HE0038)

Html Report (VSDrops) Download

❌ generator tests

1 tests failed, 227 tests passed.
  • introspection/watchOS 32-bits - simulator/Debug (watchOS 6.0): Crashed Known issue: HE0038)

Html Report (VSDrops) Download

❌ interdependent_binding_projects tests

1 tests failed, 227 tests passed.
  • introspection/watchOS 32-bits - simulator/Debug (watchOS 6.0): Crashed Known issue: HE0038)

Html Report (VSDrops) Download

❌ install_source tests

1 tests failed, 227 tests passed.
  • introspection/watchOS 32-bits - simulator/Debug (watchOS 6.0): Crashed Known issue: HE0038)

Html Report (VSDrops) Download

❌ introspection tests

1 tests failed, 227 tests passed.
  • introspection/watchOS 32-bits - simulator/Debug (watchOS 6.0): Crashed Known issue: HE0038)

Html Report (VSDrops) Download

❌ linker tests

2 tests failed, 226 tests passed.
  • introspection/watchOS 32-bits - simulator/Debug (watchOS 6.0): Crashed Known issue: HE0038)
  • mmptest/macOS/Debug: Failed (Execution failed with exit code 2)

[Html Report (VSDrops)](https://vsdrop.corp.microsoft.com/file/v1/xamarin-macios/device-tests/20220901.\n\nThe message from CI is too large for the GitHub comments. You can find the full results here.

@rolfbjarne
Copy link
Member

I merged main into this PR to see if that fixes a few of the test failures.

@vs-mobiletools-engineering-service2

This comment has been minimized.

@vs-mobiletools-engineering-service2

This comment has been minimized.

@vs-mobiletools-engineering-service2

This comment has been minimized.

@vs-mobiletools-engineering-service2

This comment has been minimized.

@rolfbjarne rolfbjarne removed run-all-tests Run all our tests. skip-device-tests Skip device tests run-dotnet-tests Run all the .NET tests labels Sep 5, 2022
@rolfbjarne
Copy link
Member

/azp run

@azure-pipelines
Copy link

Azure Pipelines successfully started running 1 pipeline(s).

@vs-mobiletools-engineering-service2
Copy link
Collaborator

🔥 Failed to compare API and create generator diff 🔥

Error: 'make' failed for the hash 7511281.

Pipeline on Agent
Hash: b3f825e8294970c926913595a40112ba8a6d154e [PR build]

@vs-mobiletools-engineering-service2
Copy link
Collaborator

❌ [PR Build] Tests on macOS Mac Catalina (10.15) failed ❌

Tests on macOS Mac Catalina (10.15) failed for unknown reasons.

Pipeline on Agent
Hash: b3f825e8294970c926913595a40112ba8a6d154e [PR build]

@vs-mobiletools-engineering-service2
Copy link
Collaborator

📚 [PR Build] Artifacts 📚

Artifacts were not provided.

Pipeline on Agent XAMMINI-013.Monterey
Hash: b3f825e8294970c926913595a40112ba8a6d154e [PR build]

@vs-mobiletools-engineering-service2
Copy link
Collaborator

❌ [PR Build] Tests on macOS M1 - Mac Big Sur (11.5) failed ❌

Failed tests are:

  • xammac_tests
  • monotouch-test

Pipeline on Agent
Hash: b3f825e8294970c926913595a40112ba8a6d154e [PR build]

@vs-mobiletools-engineering-service2
Copy link
Collaborator

🔥 [CI Build] Test results 🔥

Test results

❌ Tests failed on VSTS: simulator tests

0 tests crashed, 1 tests failed, 222 tests passed.

Failures

❌ bcl tests

1 tests failed, 68 tests passed.
  • [NUnit] Mono SystemNumericsTests/watchOS 32-bits - simulator/Debug: Crashed

Html Report (VSDrops) Download

Successes

✅ cecil: All 1 tests passed. Html Report (VSDrops) Download
✅ dotnettests: All 1 tests passed. Html Report (VSDrops) Download
✅ fsharp: All 7 tests passed. Html Report (VSDrops) Download
✅ framework: All 8 tests passed. Html Report (VSDrops) Download
✅ generator: All 2 tests passed. Html Report (VSDrops) Download
✅ interdependent_binding_projects: All 7 tests passed. Html Report (VSDrops) Download
✅ install_source: All 1 tests passed. Html Report (VSDrops) Download
✅ introspection: All 8 tests passed. Html Report (VSDrops) Download
✅ linker: All 65 tests passed. Html Report (VSDrops) Download
✅ mac_binding_project: All 1 tests passed. Html Report (VSDrops) Download
✅ mmp: All 2 tests passed. Html Report (VSDrops) Download
✅ mononative: All 12 tests passed. Html Report (VSDrops) Download
✅ monotouch: All 23 tests passed. Html Report (VSDrops) Download
✅ msbuild: All 2 tests passed. Html Report (VSDrops) Download
✅ mtouch: All 1 tests passed. Html Report (VSDrops) Download
✅ xammac: All 3 tests passed. Html Report (VSDrops) Download
✅ xcframework: All 8 tests passed. Html Report (VSDrops) Download
✅ xtro: All 2 tests passed. Html Report (VSDrops) Download

Pipeline on Agent
Hash: [PR build]

@stephen-hawley stephen-hawley merged commit 1efe5ff into xamarin:main Sep 6, 2022
@stephen-hawley stephen-hawley deleted the pinvoke-audiounit branch September 6, 2022 14:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
not-notes-worthy Ignore for release notes
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants