Skip to content

Commit

Permalink
[monotouch-test] Fix broken UrlRequestTest.Mutability_30744 test. (#9096
Browse files Browse the repository at this point in the history
)

* [monotouch-test] Fix broken UrlRequestTest.Mutability_30744 test.

This test is supposed to assert that setting a header on an immutable
dictionary throws an exception.

The problem is that the tested code always throws an exception: either when
setting the header, or when asserting right after because no exception was
thrown, effectively always passing.

This showed up with current versions of NUnit[Lite], which keeps track of
assertion failures, and fails a test even if those assertion
failures/exceptions are caught in exception handlers.

So remove the whole exception verification logic, and just try to set the
value. We'll see if the test start failing somewhere (I've already tested both
on device and simulator, and no problems found so far).

* Remove a simulator condition.

It works on device for me (iPhone 7 with iOS 11.4.1)... maybe Apple changed
something?
  • Loading branch information
rolfbjarne authored Jul 16, 2020
1 parent e344698 commit 839f586
Showing 1 changed file with 9 additions and 22 deletions.
31 changes: 9 additions & 22 deletions tests/monotouch-test/Foundation/UrlRequestTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,30 +34,17 @@ public void Mutability_30744 ()
// that a bit like lying, we still consider it an NSMutableDictionary but it't not mutable
Assert.That (mur.Headers, Is.TypeOf (typeof (NSMutableDictionary)), "NSMutableDictionary");

#if !MONOMAC // No Simulator for mac
// that would crash on devices
// NSInternalInconsistencyException -[__NSCFDictionary setObject:forKey:]: mutating method sent to immutable object
if (Runtime.Arch == Arch.SIMULATOR) {
bool native_exception = false;
try {
mur.Headers.SetValueForKey (s3, s1);
Assert.Fail ("exception immutability");
} catch {
native_exception = true;
}
Assert.True (native_exception, "non-mutable NSDictionary");
mur.Headers.SetValueForKey (s3, s1);

// the original NSMutableDictionary is fine - but it's not what's being used, i.e. property is "copy"
md.Remove (s1);
Assert.That (md.Count, Is.EqualTo (0), "1");
Assert.That (mur.Headers.Count, Is.EqualTo (1), "2");
md.SetValueForKey (s3, s1);
Assert.That (md.Count, Is.EqualTo (1), "3");
Assert.That (mur.Headers.Count, Is.EqualTo (1), "40");
// the original NSMutableDictionary is fine - but it's not what's being used, i.e. property is "copy"
md.Remove (s1);
Assert.That (md.Count, Is.EqualTo (0), "1");
Assert.That (mur.Headers.Count, Is.EqualTo (1), "2");
md.SetValueForKey (s3, s1);
Assert.That (md.Count, Is.EqualTo (1), "3");
Assert.That (mur.Headers.Count, Is.EqualTo (1), "40");

Assert.AreNotSame (md, mur.Headers, "!same");
}
#endif
Assert.AreNotSame (md, mur.Headers, "!same");

// https://www.bignerdranch.com/blog/about-mutability/
Assert.That (mur.Headers.Class.Name, Is.EqualTo ("__NSCFDictionary"), "__NSCFDictionary");
Expand Down

5 comments on commit 839f586

@xamarin-release-manager
Copy link
Collaborator

Choose a reason for hiding this comment

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

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

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

Test results

150 tests' device not found, 0 tests passed.

Pipeline on Agent XAMTESTWIN04

@xamarin-release-manager
Copy link
Collaborator

Choose a reason for hiding this comment

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

🔥 Tests failed catastrophically on VSTS: device tests iOS (DDFun) (no summary found). 🔥

Result file /Users/xamarinqa/azdo/_work/3/s\Reports\TestSummary\TestSummary.md not found.

Pipeline on Agent XAMTESTMAC03

@xamarin-release-manager
Copy link
Collaborator

Choose a reason for hiding this comment

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

Build was (probably) aborted

🔥 Jenkins job (on internal Jenkins) failed in stage(s) 'Running XM tests on '10.10', Running XM tests on '10.11', Running XM tests on '10.9'' 🔥

Provisioning succeeded
Build succeeded
✅ Packages built successfully

View packages

API Diff (from stable)
API Diff (from PR only) (no change)
Generator Diff (no change)
🔥 Xamarin.Mac tests on 10.10 failed: Xamarin.Mac tests on macOS 10.10 failed (xammac_tests) 🔥
🔥 Xamarin.Mac tests on 10.11 failed: Xamarin.Mac tests on macOS 10.11 failed (xammac_tests) 🔥
🔥 Xamarin.Mac tests on 10.9 failed: Xamarin.Mac tests on macOS 10.9 failed (xammac_tests) 🔥
🔥 Test run failed 🔥

Test results

9 tests failed, 177 tests passed.

Failed tests

  • mscorlib Part 1/iOS Unified 32-bits - simulator/Debug: HarnessException (Harness exception for 'mscorlib Part 1': System.IO.FileNotFoundException: Could not find file "/Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/126/vsts-nunit-test-classic-20200716_054443.xml"
    File name: '/Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/126/vsts-nunit-test-classic-20200716_054443.xml'
    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.IO.FileOptions options) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:106
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
    at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:182
    at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:157
    at System.IO.StreamReader..ctor (System.String path) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:152
    at (wrapper remoting-invoke-with-check) System.IO.StreamReader..ctor(string)
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResultFile (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00330] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:336
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.TestsSucceeded (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00032] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:368
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResult () [0x000cf] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:451
    at Xharness.AppRunner.RunAsync () [0x01528] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/AppRunner.cs:429
    at Xharness.TestTasks.RunSimulator.RunTestAsync () [0x002b1] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/TestTasks/RunSimulator.cs:124
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 1/iOS Unified 64-bits - simulator/Debug: HarnessException (Harness exception for 'mscorlib Part 1': System.IO.FileNotFoundException: Could not find file "/Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/127/vsts-nunit-test-classic-20200716_055805.xml"
    File name: '/Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/127/vsts-nunit-test-classic-20200716_055805.xml'
    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.IO.FileOptions options) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:106
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
    at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:182
    at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:157
    at System.IO.StreamReader..ctor (System.String path) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:152
    at (wrapper remoting-invoke-with-check) System.IO.StreamReader..ctor(string)
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResultFile (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00330] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:336
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.TestsSucceeded (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00032] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:368
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResult () [0x000cf] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:451
    at Xharness.AppRunner.RunAsync () [0x01528] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/AppRunner.cs:429
    at Xharness.TestTasks.RunSimulator.RunTestAsync () [0x002b1] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/TestTasks/RunSimulator.cs:124
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 1/tvOS - simulator/Debug: HarnessException (Harness exception for 'mscorlib Part 1': System.IO.FileNotFoundException: Could not find file "/Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/129/vsts-nunit-test-tvos-20200716_061048.xml"
    File name: '/Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/129/vsts-nunit-test-tvos-20200716_061048.xml'
    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.IO.FileOptions options) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:106
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
    at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:182
    at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:157
    at System.IO.StreamReader..ctor (System.String path) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:152
    at (wrapper remoting-invoke-with-check) System.IO.StreamReader..ctor(string)
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResultFile (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00330] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:336
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.TestsSucceeded (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00032] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:368
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResult () [0x000cf] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:451
    at Xharness.AppRunner.RunAsync () [0x01528] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/AppRunner.cs:429
    at Xharness.TestTasks.RunSimulator.RunTestAsync () [0x002b1] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/TestTasks/RunSimulator.cs:124
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 1/watchOS 32-bits - simulator/Debug: HarnessException (Harness exception for 'mscorlib Part 1': System.IO.FileNotFoundException: Could not find file "/Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/131/vsts-nunit-test-watchos-20200716_061914.xml"
    File name: '/Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/131/vsts-nunit-test-watchos-20200716_061914.xml'
    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.IO.FileOptions options) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:106
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
    at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:182
    at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:157
    at System.IO.StreamReader..ctor (System.String path) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:152
    at (wrapper remoting-invoke-with-check) System.IO.StreamReader..ctor(string)
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResultFile (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00330] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:336
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.TestsSucceeded (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00032] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:368
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResult () [0x000cf] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:451
    at Xharness.AppRunner.RunAsync () [0x01528] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/AppRunner.cs:429
    at Xharness.TestTasks.RunSimulator.RunTestAsync () [0x002b1] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/TestTasks/RunSimulator.cs:124
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 2/iOS Unified 32-bits - simulator/Debug: HarnessException (Harness exception for 'mscorlib Part 2': System.IO.FileNotFoundException: Could not find file "/Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/jenkins-results/tests/mscorlib-Part-2/133/vsts-nunit-test-classic-20200716_054450.xml"
    File name: '/Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/jenkins-results/tests/mscorlib-Part-2/133/vsts-nunit-test-classic-20200716_054450.xml'
    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.IO.FileOptions options) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:106
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
    at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:182
    at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:157
    at System.IO.StreamReader..ctor (System.String path) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:152
    at (wrapper remoting-invoke-with-check) System.IO.StreamReader..ctor(string)
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResultFile (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00330] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:336
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.TestsSucceeded (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00032] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:368
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResult () [0x000cf] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:451
    at Xharness.AppRunner.RunAsync () [0x01528] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/AppRunner.cs:429
    at Xharness.TestTasks.RunSimulator.RunTestAsync () [0x002b1] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/TestTasks/RunSimulator.cs:124
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 2/iOS Unified 64-bits - simulator/Debug: HarnessException (Harness exception for 'mscorlib Part 2': System.IO.FileNotFoundException: Could not find file "/Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/jenkins-results/tests/mscorlib-Part-2/134/vsts-nunit-test-classic-20200716_055809.xml"
    File name: '/Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/jenkins-results/tests/mscorlib-Part-2/134/vsts-nunit-test-classic-20200716_055809.xml'
    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.IO.FileOptions options) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:106
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
    at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:182
    at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:157
    at System.IO.StreamReader..ctor (System.String path) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:152
    at (wrapper remoting-invoke-with-check) System.IO.StreamReader..ctor(string)
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResultFile (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00330] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:336
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.TestsSucceeded (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00032] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:368
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResult () [0x000cf] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:451
    at Xharness.AppRunner.RunAsync () [0x01528] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/AppRunner.cs:429
    at Xharness.TestTasks.RunSimulator.RunTestAsync () [0x002b1] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/TestTasks/RunSimulator.cs:124
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 2/tvOS - simulator/Debug: HarnessException (Harness exception for 'mscorlib Part 2': System.IO.FileNotFoundException: Could not find file "/Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/jenkins-results/tests/mscorlib-Part-2/136/vsts-nunit-test-tvos-20200716_061051.xml"
    File name: '/Users/builder/jenkins/workspace/xamarin-macios/xamarin-macios/jenkins-results/tests/mscorlib-Part-2/136/vsts-nunit-test-tvos-20200716_061051.xml'
    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.IO.FileOptions options) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:106
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
    at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:182
    at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:157
    at System.IO.StreamReader..ctor (System.String path) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/b

@xamarin-release-manager
Copy link
Collaborator

Choose a reason for hiding this comment

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

🔥 Tests failed catastrophically on VSTS: device tests tvOS (DDFun) (no summary found). 🔥

Result file /Users/xamarinqa/azdo/_work/7/s\Reports\TestSummary\TestSummary.md not found.

Pipeline on Agent XAMTESTMAC02

@xamarin-release-manager
Copy link
Collaborator

Choose a reason for hiding this comment

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

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

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

Test results

31 tests failed, 119 tests passed.

Failed tests

  • monotouch-test/iOS Unified 64-bits - device/Debug: Failed
  • monotouch-test/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): Failed
  • monotouch-test/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • monotouch-test/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • monotouch-test/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • monotouch-test/iOS Unified 64-bits - device/Release: Failed
  • monotouch-test/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Failed
  • monotouch-test/iOS Unified 64-bits - device/Debug (dynamic registrar): Failed
  • monotouch-test/iOS Unified 64-bits - device/Release (all optimizations): Failed
  • monotouch-test/iOS Unified 64-bits - device/Debug (all optimizations): Failed
  • monotouch-test/iOS Unified 64-bits - device/Debug: SGenConc: Failed
  • monotouch-test/iOS Unified 64-bits - device/Debug (interpreter): Failed
  • monotouch-test/iOS Unified 64-bits - device/Debug (interpreter -mscorlib): Failed
  • monotouch-test/iOS Unified 64-bits - device/Release (interpreter -mscorlib): Failed
  • mscorlib Part 1/iOS Unified 64-bits - device/Debug: HarnessException (Harness exception for 'mscorlib Part 1': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/agent/_work/16/s/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/514/vsts-nunit-test-ios-20200716_035101.xml"
    File name: '/Users/xamarinqa/agent/_work/16/s/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/514/vsts-nunit-test-ios-20200716_035101.xml'
    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.IO.FileOptions options) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:106
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
    at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:182
    at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:157
    at System.IO.StreamReader..ctor (System.String path) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:152
    at (wrapper remoting-invoke-with-check) System.IO.StreamReader..ctor(string)
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResultFile (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00330] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:336
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.TestsSucceeded (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00032] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:368
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResult () [0x000cf] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:451
    at Xharness.AppRunner.RunAsync () [0x01528] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/AppRunner.cs:429
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 1/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for 'mscorlib Part 1': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/agent/_work/16/s/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/1644/vsts-nunit-test-ios-20200716_070247.xml"
    File name: '/Users/xamarinqa/agent/_work/16/s/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/1644/vsts-nunit-test-ios-20200716_070247.xml'
    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.IO.FileOptions options) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:106
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
    at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:182
    at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:157
    at System.IO.StreamReader..ctor (System.String path) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:152
    at (wrapper remoting-invoke-with-check) System.IO.StreamReader..ctor(string)
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResultFile (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00330] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:336
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.TestsSucceeded (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00032] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:368
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResult () [0x000cf] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:451
    at Xharness.AppRunner.RunAsync () [0x01528] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/AppRunner.cs:429
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 1/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for 'mscorlib Part 1': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/agent/_work/16/s/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/1646/vsts-nunit-test-ios-20200716_070336.xml"
    File name: '/Users/xamarinqa/agent/_work/16/s/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/1646/vsts-nunit-test-ios-20200716_070336.xml'
    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.IO.FileOptions options) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:106
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
    at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:182
    at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:157
    at System.IO.StreamReader..ctor (System.String path) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:152
    at (wrapper remoting-invoke-with-check) System.IO.StreamReader..ctor(string)
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResultFile (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00330] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:336
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.TestsSucceeded (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00032] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:368
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResult () [0x000cf] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:451
    at Xharness.AppRunner.RunAsync () [0x01528] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/AppRunner.cs:429
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 1/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for 'mscorlib Part 1': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/agent/_work/16/s/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/1648/vsts-nunit-test-ios-20200716_070424.xml"
    File name: '/Users/xamarinqa/agent/_work/16/s/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/1648/vsts-nunit-test-ios-20200716_070424.xml'
    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.IO.FileOptions options) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:106
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
    at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:182
    at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:157
    at System.IO.StreamReader..ctor (System.String path) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:152
    at (wrapper remoting-invoke-with-check) System.IO.StreamReader..ctor(string)
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResultFile (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00330] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:336
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.TestsSucceeded (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00032] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:368
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResult () [0x000cf] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:451
    at Xharness.AppRunner.RunAsync () [0x01528] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/AppRunner.cs:429
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 1/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for 'mscorlib Part 1': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/agent/_work/16/s/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/1650/vsts-nunit-test-ios-20200716_070513.xml"
    File name: '/Users/xamarinqa/agent/_work/16/s/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/1650/vsts-nunit-test-ios-20200716_070513.xml'
    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.IO.FileOptions options) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:106
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
    at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:182
    at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:157
    at System.IO.StreamReader..ctor (System.String path) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:152
    at (wrapper remoting-invoke-with-check) System.IO.StreamReader..ctor(string)
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResultFile (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00330] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:336
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.TestsSucceeded (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00032] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:368
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResult () [0x000cf] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:451
    at Xharness.AppRunner.RunAsync () [0x01528] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/AppRunner.cs:429
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 1/iOS Unified 64-bits - device/Release: HarnessException (Harness exception for 'mscorlib Part 1': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/agent/_work/16/s/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/1652/vsts-nunit-test-ios-20200716_070739.xml"
    File name: '/Users/xamarinqa/agent/_work/16/s/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/1652/vsts-nunit-test-ios-20200716_070739.xml'
    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.IO.FileOptions options) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:106
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
    at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:182
    at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:157
    at System.IO.StreamReader..ctor (System.String path) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:152
    at (wrapper remoting-invoke-with-check) System.IO.StreamReader..ctor(string)
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResultFile (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00330] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:336
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.TestsSucceeded (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00032] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:368
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResult () [0x000cf] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:451
    at Xharness.AppRunner.RunAsync () [0x01528] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/AppRunner.cs:429
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 1/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for 'mscorlib Part 1': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/agent/_work/16/s/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/1654/vsts-nunit-test-ios-20200716_071014.xml"
    File name: '/Users/xamarinqa/agent/_work/16/s/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/1654/vsts-nunit-test-ios-20200716_071014.xml'
    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.IO.FileOptions options) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:106
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
    at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:182
    at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:157
    at System.IO.StreamReader..ctor (System.String path) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:152
    at (wrapper remoting-invoke-with-check) System.IO.StreamReader..ctor(string)
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResultFile (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00330] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:336
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.TestsSucceeded (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00032] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:368
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResult () [0x000cf] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:451
    at Xharness.AppRunner.RunAsync () [0x01528] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/AppRunner.cs:429
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 1/iOS Unified 64-bits - device/Debug: SGenConc: HarnessException (Harness exception for 'mscorlib Part 1': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/agent/_work/16/s/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/1656/vsts-nunit-test-ios-20200716_071104.xml"
    File name: '/Users/xamarinqa/agent/_work/16/s/xamarin-macios/jenkins-results/tests/mscorlib-Part-1/1656/vsts-nunit-test-ios-20200716_071104.xml'
    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.IO.FileOptions options) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:106
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
    at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:182
    at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:157
    at System.IO.StreamReader..ctor (System.String path) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:152
    at (wrapper remoting-invoke-with-check) System.IO.StreamReader..ctor(string)
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResultFile (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00330] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:336
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.TestsSucceeded (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00032] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:368
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResult () [0x000cf] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:451
    at Xharness.AppRunner.RunAsync () [0x01528] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/AppRunner.cs:429
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 2/iOS Unified 64-bits - device/Debug: Failed (Install failed, exit code: 137.)
  • mscorlib Part 2/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): HarnessException (Harness exception for 'mscorlib Part 2': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/agent/_work/16/s/xamarin-macios/jenkins-results/tests/mscorlib-Part-2/1724/vsts-nunit-test-ios-20200716_071152.xml"
    File name: '/Users/xamarinqa/agent/_work/16/s/xamarin-macios/jenkins-results/tests/mscorlib-Part-2/1724/vsts-nunit-test-ios-20200716_071152.xml'
    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.IO.FileOptions options) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:106
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
    at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:182
    at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:157
    at System.IO.StreamReader..ctor (System.String path) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:152
    at (wrapper remoting-invoke-with-check) System.IO.StreamReader..ctor(string)
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResultFile (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00330] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:336
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.TestsSucceeded (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00032] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:368
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResult () [0x000cf] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:451
    at Xharness.AppRunner.RunAsync () [0x01528] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/AppRunner.cs:429
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 2/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): HarnessException (Harness exception for 'mscorlib Part 2': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/agent/_work/16/s/xamarin-macios/jenkins-results/tests/mscorlib-Part-2/1726/vsts-nunit-test-ios-20200716_071241.xml"
    File name: '/Users/xamarinqa/agent/_work/16/s/xamarin-macios/jenkins-results/tests/mscorlib-Part-2/1726/vsts-nunit-test-ios-20200716_071241.xml'
    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.IO.FileOptions options) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:106
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
    at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:182
    at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:157
    at System.IO.StreamReader..ctor (System.String path) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:152
    at (wrapper remoting-invoke-with-check) System.IO.StreamReader..ctor(string)
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResultFile (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00330] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:336
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.TestsSucceeded (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00032] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:368
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResult () [0x000cf] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:451
    at Xharness.AppRunner.RunAsync () [0x01528] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/AppRunner.cs:429
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 2/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): HarnessException (Harness exception for 'mscorlib Part 2': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/agent/_work/16/s/xamarin-macios/jenkins-results/tests/mscorlib-Part-2/1728/vsts-nunit-test-ios-20200716_071332.xml"
    File name: '/Users/xamarinqa/agent/_work/16/s/xamarin-macios/jenkins-results/tests/mscorlib-Part-2/1728/vsts-nunit-test-ios-20200716_071332.xml'
    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.IO.FileOptions options) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:106
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
    at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:182
    at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:157
    at System.IO.StreamReader..ctor (System.String path) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:152
    at (wrapper remoting-invoke-with-check) System.IO.StreamReader..ctor(string)
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResultFile (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00330] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:336
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.TestsSucceeded (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00032] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:368
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResult () [0x000cf] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:451
    at Xharness.AppRunner.RunAsync () [0x01528] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/AppRunner.cs:429
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 2/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): HarnessException (Harness exception for 'mscorlib Part 2': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/agent/_work/16/s/xamarin-macios/jenkins-results/tests/mscorlib-Part-2/1730/vsts-nunit-test-ios-20200716_071426.xml"
    File name: '/Users/xamarinqa/agent/_work/16/s/xamarin-macios/jenkins-results/tests/mscorlib-Part-2/1730/vsts-nunit-test-ios-20200716_071426.xml'
    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.IO.FileOptions options) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:106
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
    at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:182
    at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:157
    at System.IO.StreamReader..ctor (System.String path) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:152
    at (wrapper remoting-invoke-with-check) System.IO.StreamReader..ctor(string)
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResultFile (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00330] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:336
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.TestsSucceeded (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00032] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:368
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResult () [0x000cf] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:451
    at Xharness.AppRunner.RunAsync () [0x01528] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/AppRunner.cs:429
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 2/iOS Unified 64-bits - device/Release: HarnessException (Harness exception for 'mscorlib Part 2': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/agent/_work/16/s/xamarin-macios/jenkins-results/tests/mscorlib-Part-2/1732/vsts-nunit-test-ios-20200716_071653.xml"
    File name: '/Users/xamarinqa/agent/_work/16/s/xamarin-macios/jenkins-results/tests/mscorlib-Part-2/1732/vsts-nunit-test-ios-20200716_071653.xml'
    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.IO.FileOptions options) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:106
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
    at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:182
    at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:157
    at System.IO.StreamReader..ctor (System.String path) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:152
    at (wrapper remoting-invoke-with-check) System.IO.StreamReader..ctor(string)
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResultFile (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00330] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:336
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.TestsSucceeded (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00032] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:368
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResult () [0x000cf] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:451
    at Xharness.AppRunner.RunAsync () [0x01528] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/AppRunner.cs:429
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 2/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): HarnessException (Harness exception for 'mscorlib Part 2': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/agent/_work/16/s/xamarin-macios/jenkins-results/tests/mscorlib-Part-2/1734/vsts-nunit-test-ios-20200716_071925.xml"
    File name: '/Users/xamarinqa/agent/_work/16/s/xamarin-macios/jenkins-results/tests/mscorlib-Part-2/1734/vsts-nunit-test-ios-20200716_071925.xml'
    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.IO.FileOptions options) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:106
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
    at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:182
    at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:157
    at System.IO.StreamReader..ctor (System.String path) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:152
    at (wrapper remoting-invoke-with-check) System.IO.StreamReader..ctor(string)
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResultFile (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00330] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:336
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.TestsSucceeded (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00032] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:368
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResult () [0x000cf] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:451
    at Xharness.AppRunner.RunAsync () [0x01528] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/AppRunner.cs:429
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • mscorlib Part 2/iOS Unified 64-bits - device/Debug: SGenConc: HarnessException (Harness exception for 'mscorlib Part 2': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/agent/_work/16/s/xamarin-macios/jenkins-results/tests/mscorlib-Part-2/1736/vsts-nunit-test-ios-20200716_072016.xml"
    File name: '/Users/xamarinqa/agent/_work/16/s/xamarin-macios/jenkins-results/tests/mscorlib-Part-2/1736/vsts-nunit-test-ios-20200716_072016.xml'
    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.IO.FileOptions options) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:106
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions)
    at System.IO.StreamReader..ctor (System.String path, System.Text.Encoding encoding, System.Boolean detectEncodingFromByteOrderMarks, System.Int32 bufferSize) [0x00055] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:182
    at System.IO.StreamReader..ctor (System.String path, System.Boolean detectEncodingFromByteOrderMarks) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:157
    at System.IO.StreamReader..ctor (System.String path) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/external/corefx/src/Common/src/CoreLib/System/IO/StreamReader.cs:152
    at (wrapper remoting-invoke-with-check) System.IO.StreamReader..ctor(string)
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResultFile (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00330] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:336
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.TestsSucceeded (Microsoft.DotNet.XHarness.iOS.Shared.AppBundleInformation appInfo, System.String test_log_path, System.Boolean timed_out) [0x00032] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:368
    at Microsoft.DotNet.XHarness.iOS.Shared.TestReporter.ParseResult () [0x000cf] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/TestReporter.cs:451
    at Xharness.AppRunner.RunAsync () [0x01528] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/AppRunner.cs:429
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x00a8f] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:162
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0123e] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunDevice.cs:228
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/agent/_work/16/s/xamarin-macios/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:283 )
  • dont link/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): Failed (Install failed, exit code: 137.)

Pipeline on Agent XAMTESTWIN05

Please sign in to comment.