Skip to content

Commit

Permalink
[tests][monotouch-test] Re-enable some ARKit tests (#9454)
Browse files Browse the repository at this point in the history
Things are a bit better with beta 5
part of #8943
  • Loading branch information
spouliot authored Aug 24, 2020
1 parent de107bc commit c82b7bd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
2 changes: 0 additions & 2 deletions tests/monotouch-test/ARKit/ARAnchorTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ public void MarshallingTest ()
{
TestRuntime.AssertXcodeVersion (10, 0);
var faceAnchor = new ARAnchor ("My Anchor", MatrixFloat4x4.Identity);
if ((Runtime.Arch == Arch.SIMULATOR) && TestRuntime.CheckXcodeVersion (12, 0))
Assert.Ignore ("broken with beta 1");
Assert.AreEqual (MatrixFloat4x4.Identity, faceAnchor.Transform, "Transform");
}
}
Expand Down
14 changes: 10 additions & 4 deletions tests/monotouch-test/ARKit/AREnvironmentProbeAnchorTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,20 @@ public void Setup ()
public void MarshallingTest ()
{
var probeAnchor = new AREnvironmentProbeAnchor (MatrixFloat4x4.Identity, new VectorFloat3 (1, 1, 1));
if ((Runtime.Arch == Arch.SIMULATOR) && TestRuntime.CheckXcodeVersion (12, 0))
Assert.Ignore ("broken with beta 1");
Assert.AreEqual (MatrixFloat4x4.Identity, probeAnchor.Transform, "Transform");
Assert.AreEqual (new VectorFloat3 (1, 1, 1), probeAnchor.Extent, "Extent");
// broken since xcode 12 beta 1 on simulator (only)
if ((Runtime.Arch == Arch.DEVICE) || !TestRuntime.CheckXcodeVersion (12, 0))
Assert.AreEqual (new VectorFloat3 (1, 1, 1), probeAnchor.Extent, "Extent");
}

[Test]
public void MarshallingTest2 ()
{
var probeAnchorWithName = new AREnvironmentProbeAnchor ("My Anchor", MatrixFloat4x4.Identity, new VectorFloat3 (1, 1, 1));
Assert.AreEqual (MatrixFloat4x4.Identity, probeAnchorWithName.Transform, "Transform");
Assert.AreEqual (new VectorFloat3 (1, 1, 1), probeAnchorWithName.Extent, "Extent");
// broken since xcode 12 beta 1 on simulator (only)
if ((Runtime.Arch == Arch.DEVICE) || !TestRuntime.CheckXcodeVersion (12, 0))
Assert.AreEqual (new VectorFloat3 (1, 1, 1), probeAnchorWithName.Extent, "Extent");
}
}
}
Expand Down

4 comments on commit c82b7bd

@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 completed (Failed) on tvOS Beta on Azure DevOps(tvOS Beta): Html Report 🔥

Test results

150 tests failed, 0 tests passed.

Failed tests

  • monotouch-test/tvOS - device/Debug: HarnessException (Harness exception for 'monotouch-test': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/myagent/_work/1/s/jenkins-results/tests/monotouch-test/348/install-20200824_094236.log"
    File name: '/Users/xamarinqa/myagent/_work/1/s/jenkins-results/tests/monotouch-test/348/install-20200824_094236.log'
    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) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:91
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.LogFile.GetReader () [0x00001] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/LogFile.cs:58
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.AppInstallMonitorLog.GetReader () [0x00000] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/AppInstallMonitorLog.cs:48
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0073c] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunDevice.cs:133
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x010e0] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunDevice.cs:219
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:282 )
  • framework-test/tvOS - device/Debug: HarnessException (Harness exception for 'framework-test': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/myagent/_work/1/s/jenkins-results/tests/framework-test/360/install-20200824_094258.log"
    File name: '/Users/xamarinqa/myagent/_work/1/s/jenkins-results/tests/framework-test/360/install-20200824_094258.log'
    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) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:91
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.LogFile.GetReader () [0x00001] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/LogFile.cs:58
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.AppInstallMonitorLog.GetReader () [0x00000] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/AppInstallMonitorLog.cs:48
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0073c] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunDevice.cs:133
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x010e0] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunDevice.cs:219
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:282 )
  • interdependent-binding-projects/tvOS - device/Debug: HarnessException (Harness exception for 'interdependent-binding-projects': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/myagent/_work/1/s/jenkins-results/tests/interdependent-binding-projects/372/install-20200824_094323.log"
    File name: '/Users/xamarinqa/myagent/_work/1/s/jenkins-results/tests/interdependent-binding-projects/372/install-20200824_094323.log'
    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) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:91
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.LogFile.GetReader () [0x00001] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/LogFile.cs:58
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.AppInstallMonitorLog.GetReader () [0x00000] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/AppInstallMonitorLog.cs:48
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0073c] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunDevice.cs:133
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x010e0] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunDevice.cs:219
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:282 )
  • fsharp/tvOS - device/Debug: HarnessException (Harness exception for 'fsharp': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/myagent/_work/1/s/jenkins-results/tests/fsharp/384/install-20200824_094348.log"
    File name: '/Users/xamarinqa/myagent/_work/1/s/jenkins-results/tests/fsharp/384/install-20200824_094348.log'
    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) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:91
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.LogFile.GetReader () [0x00001] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/LogFile.cs:58
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.AppInstallMonitorLog.GetReader () [0x00000] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/AppInstallMonitorLog.cs:48
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0073c] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunDevice.cs:133
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x010e0] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunDevice.cs:219
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:282 )
  • dont link/tvOS - device/Debug: HarnessException (Harness exception for 'dont link': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/myagent/_work/1/s/jenkins-results/tests/dont link/408/install-20200824_094428.log"
    File name: '/Users/xamarinqa/myagent/_work/1/s/jenkins-results/tests/dont link/408/install-20200824_094428.log'
    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) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:91
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.LogFile.GetReader () [0x00001] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/LogFile.cs:58
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.AppInstallMonitorLog.GetReader () [0x00000] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/AppInstallMonitorLog.cs:48
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0073c] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunDevice.cs:133
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x010e0] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunDevice.cs:219
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:282 )
  • link all/tvOS - device/Debug: HarnessException (Harness exception for 'link all': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/myagent/_work/1/s/jenkins-results/tests/link all/420/install-20200824_094459.log"
    File name: '/Users/xamarinqa/myagent/_work/1/s/jenkins-results/tests/link all/420/install-20200824_094459.log'
    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) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:91
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.LogFile.GetReader () [0x00001] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/LogFile.cs:58
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.AppInstallMonitorLog.GetReader () [0x00000] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/AppInstallMonitorLog.cs:48
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0073c] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunDevice.cs:133
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x010e0] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunDevice.cs:219
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:282 )
  • link sdk/tvOS - device/Debug: HarnessException (Harness exception for 'link sdk': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/myagent/_work/1/s/jenkins-results/tests/link sdk/432/install-20200824_094533.log"
    File name: '/Users/xamarinqa/myagent/_work/1/s/jenkins-results/tests/link sdk/432/install-20200824_094533.log'
    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) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:91
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.LogFile.GetReader () [0x00001] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/LogFile.cs:58
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.AppInstallMonitorLog.GetReader () [0x00000] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/AppInstallMonitorLog.cs:48
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0073c] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunDevice.cs:133
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x010e0] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunDevice.cs:219
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:282 )
  • mono-native-compat/tvOS - device/Debug: HarnessException (Harness exception for 'mono-native-compat': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/myagent/_work/1/s/jenkins-results/tests/mono-native-compat/444/install-20200824_094548.log"
    File name: '/Users/xamarinqa/myagent/_work/1/s/jenkins-results/tests/mono-native-compat/444/install-20200824_094548.log'
    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) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:91
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.LogFile.GetReader () [0x00001] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/LogFile.cs:58
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.AppInstallMonitorLog.GetReader () [0x00000] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/AppInstallMonitorLog.cs:48
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0073c] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunDevice.cs:133
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x010e0] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunDevice.cs:219
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:282 )
  • mono-native-unified/tvOS - device/Debug: HarnessException (Harness exception for 'mono-native-unified': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/myagent/_work/1/s/jenkins-results/tests/mono-native-unified/454/install-20200824_094601.log"
    File name: '/Users/xamarinqa/myagent/_work/1/s/jenkins-results/tests/mono-native-unified/454/install-20200824_094601.log'
    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) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:91
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.LogFile.GetReader () [0x00001] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/LogFile.cs:58
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.AppInstallMonitorLog.GetReader () [0x00000] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/AppInstallMonitorLog.cs:48
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0073c] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunDevice.cs:133
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x010e0] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunDevice.cs:219
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:282 )
  • [NUnit] Mono BCL tests group 1/tvOS - device/Debug: HarnessException (Harness exception for '[NUnit] Mono BCL tests group 1': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/myagent/_work/1/s/jenkins-results/tests/[NUnit] Mono BCL tests group 1/466/install-20200824_094655.log"
    File name: '/Users/xamarinqa/myagent/_work/1/s/jenkins-results/tests/[NUnit] Mono BCL tests group 1/466/install-20200824_094655.log'
    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) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:91
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.LogFile.GetReader () [0x00001] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/LogFile.cs:58
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.AppInstallMonitorLog.GetReader () [0x00000] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/AppInstallMonitorLog.cs:48
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0073c] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunDevice.cs:133
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x010e0] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunDevice.cs:219
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:282 )
  • [NUnit] Mono BCL tests group 2/tvOS - device/Debug: HarnessException (Harness exception for '[NUnit] Mono BCL tests group 2': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/myagent/_work/1/s/jenkins-results/tests/[NUnit] Mono BCL tests group 2/474/install-20200824_094755.log"
    File name: '/Users/xamarinqa/myagent/_work/1/s/jenkins-results/tests/[NUnit] Mono BCL tests group 2/474/install-20200824_094755.log'
    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) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:91
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.LogFile.GetReader () [0x00001] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/LogFile.cs:58
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.AppInstallMonitorLog.GetReader () [0x00000] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/AppInstallMonitorLog.cs:48
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0073c] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunDevice.cs:133
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x010e0] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunDevice.cs:219
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:282 )
  • [xUnit] Mono BCL tests group 3/tvOS - device/Debug: HarnessException (Harness exception for '[xUnit] Mono BCL tests group 3': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/myagent/_work/1/s/jenkins-results/tests/[xUnit] Mono BCL tests group 3/482/install-20200824_094841.log"
    File name: '/Users/xamarinqa/myagent/_work/1/s/jenkins-results/tests/[xUnit] Mono BCL tests group 3/482/install-20200824_094841.log'
    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) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:91
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.LogFile.GetReader () [0x00001] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/LogFile.cs:58
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.AppInstallMonitorLog.GetReader () [0x00000] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/AppInstallMonitorLog.cs:48
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0073c] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunDevice.cs:133
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x010e0] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunDevice.cs:219
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:282 )
  • [xUnit] Mono BCL tests group 4/tvOS - device/Debug: HarnessException (Harness exception for '[xUnit] Mono BCL tests group 4': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/myagent/_work/1/s/jenkins-results/tests/[xUnit] Mono BCL tests group 4/490/install-20200824_094920.log"
    File name: '/Users/xamarinqa/myagent/_work/1/s/jenkins-results/tests/[xUnit] Mono BCL tests group 4/490/install-20200824_094920.log'
    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) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:91
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.LogFile.GetReader () [0x00001] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/LogFile.cs:58
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.AppInstallMonitorLog.GetReader () [0x00000] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/AppInstallMonitorLog.cs:48
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0073c] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunDevice.cs:133
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x010e0] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunDevice.cs:219
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:282 )
  • [xUnit] Mono BCL tests group 5/tvOS - device/Debug: HarnessException (Harness exception for '[xUnit] Mono BCL tests group 5': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/myagent/_work/1/s/jenkins-results/tests/[xUnit] Mono BCL tests group 5/498/install-20200824_094954.log"
    File name: '/Users/xamarinqa/myagent/_work/1/s/jenkins-results/tests/[xUnit] Mono BCL tests group 5/498/install-20200824_094954.log'
    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) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:91
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.LogFile.GetReader () [0x00001] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/LogFile.cs:58
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.AppInstallMonitorLog.GetReader () [0x00000] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/AppInstallMonitorLog.cs:48
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0073c] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunDevice.cs:133
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x010e0] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunDevice.cs:219
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/myagent/_work/1/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:282 )
  • mscorlib Part 1/tvOS - device/Debug: HarnessException (Harness exception for 'mscorlib Part 1': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/myagent/_work/1/s/jenkins-results/tests/mscorlib Part 1/506/install-20200824_095040.log"
    File name: '/Users/xamarinqa/myagent/_work/1/s/jenkins-results/tests/mscorlib Part 1/506/install-20200824_095040.log'
    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) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:91
    at

@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 completed (Failed) on iOS Beta on Azure DevOps(iOS Beta): Html Report 🔥

Test results

150 tests failed, 0 tests passed.

Failed tests

  • monotouch-test/iOS Unified 64-bits - device/Debug: HarnessException (Harness exception for 'monotouch-test': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/myagent/_work/6/s/jenkins-results/tests/monotouch-test/342/install-20200824_094411.log"
    File name: '/Users/xamarinqa/myagent/_work/6/s/jenkins-results/tests/monotouch-test/342/install-20200824_094411.log'
    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) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:91
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.LogFile.GetReader () [0x00001] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/LogFile.cs:58
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.AppInstallMonitorLog.GetReader () [0x00000] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/AppInstallMonitorLog.cs:48
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0073c] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunDevice.cs:133
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x010e0] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunDevice.cs:219
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:282 )
  • framework-test/iOS Unified 64-bits - device/Debug: HarnessException (Harness exception for 'framework-test': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/myagent/_work/6/s/jenkins-results/tests/framework-test/354/install-20200824_094438.log"
    File name: '/Users/xamarinqa/myagent/_work/6/s/jenkins-results/tests/framework-test/354/install-20200824_094438.log'
    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) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:91
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.LogFile.GetReader () [0x00001] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/LogFile.cs:58
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.AppInstallMonitorLog.GetReader () [0x00000] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/AppInstallMonitorLog.cs:48
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0073c] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunDevice.cs:133
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x010e0] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunDevice.cs:219
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:282 )
  • interdependent-binding-projects/iOS Unified 64-bits - device/Debug: HarnessException (Harness exception for 'interdependent-binding-projects': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/myagent/_work/6/s/jenkins-results/tests/interdependent-binding-projects/366/install-20200824_094515.log"
    File name: '/Users/xamarinqa/myagent/_work/6/s/jenkins-results/tests/interdependent-binding-projects/366/install-20200824_094515.log'
    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) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:91
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.LogFile.GetReader () [0x00001] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/LogFile.cs:58
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.AppInstallMonitorLog.GetReader () [0x00000] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/AppInstallMonitorLog.cs:48
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0073c] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunDevice.cs:133
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x010e0] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunDevice.cs:219
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:282 )
  • fsharp/iOS Unified 64-bits - device/Debug: HarnessException (Harness exception for 'fsharp': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/myagent/_work/6/s/jenkins-results/tests/fsharp/378/install-20200824_094550.log"
    File name: '/Users/xamarinqa/myagent/_work/6/s/jenkins-results/tests/fsharp/378/install-20200824_094550.log'
    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) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:91
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.LogFile.GetReader () [0x00001] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/LogFile.cs:58
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.AppInstallMonitorLog.GetReader () [0x00000] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/AppInstallMonitorLog.cs:48
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0073c] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunDevice.cs:133
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x010e0] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunDevice.cs:219
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:282 )
  • dont link/iOS Unified 64-bits - device/Debug: HarnessException (Harness exception for 'dont link': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/myagent/_work/6/s/jenkins-results/tests/dont link/402/install-20200824_094653.log"
    File name: '/Users/xamarinqa/myagent/_work/6/s/jenkins-results/tests/dont link/402/install-20200824_094653.log'
    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) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:91
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.LogFile.GetReader () [0x00001] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/LogFile.cs:58
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.AppInstallMonitorLog.GetReader () [0x00000] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/AppInstallMonitorLog.cs:48
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0073c] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunDevice.cs:133
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x010e0] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunDevice.cs:219
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:282 )
  • link all/iOS Unified 64-bits - device/Debug: HarnessException (Harness exception for 'link all': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/myagent/_work/6/s/jenkins-results/tests/link all/414/install-20200824_094734.log"
    File name: '/Users/xamarinqa/myagent/_work/6/s/jenkins-results/tests/link all/414/install-20200824_094734.log'
    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) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:91
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.LogFile.GetReader () [0x00001] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/LogFile.cs:58
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.AppInstallMonitorLog.GetReader () [0x00000] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/AppInstallMonitorLog.cs:48
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0073c] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunDevice.cs:133
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x010e0] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunDevice.cs:219
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:282 )
  • link sdk/iOS Unified 64-bits - device/Debug: HarnessException (Harness exception for 'link sdk': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/myagent/_work/6/s/jenkins-results/tests/link sdk/426/install-20200824_094816.log"
    File name: '/Users/xamarinqa/myagent/_work/6/s/jenkins-results/tests/link sdk/426/install-20200824_094816.log'
    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) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:91
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.LogFile.GetReader () [0x00001] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/LogFile.cs:58
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.AppInstallMonitorLog.GetReader () [0x00000] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/AppInstallMonitorLog.cs:48
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0073c] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunDevice.cs:133
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x010e0] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunDevice.cs:219
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:282 )
  • mono-native-compat/iOS Unified 64-bits - device/Debug: HarnessException (Harness exception for 'mono-native-compat': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/myagent/_work/6/s/jenkins-results/tests/mono-native-compat/438/install-20200824_094836.log"
    File name: '/Users/xamarinqa/myagent/_work/6/s/jenkins-results/tests/mono-native-compat/438/install-20200824_094836.log'
    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) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:91
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.LogFile.GetReader () [0x00001] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/LogFile.cs:58
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.AppInstallMonitorLog.GetReader () [0x00000] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/AppInstallMonitorLog.cs:48
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0073c] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunDevice.cs:133
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x010e0] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunDevice.cs:219
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:282 )
  • mono-native-unified/iOS Unified 64-bits - device/Debug: HarnessException (Harness exception for 'mono-native-unified': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/myagent/_work/6/s/jenkins-results/tests/mono-native-unified/448/install-20200824_094853.log"
    File name: '/Users/xamarinqa/myagent/_work/6/s/jenkins-results/tests/mono-native-unified/448/install-20200824_094853.log'
    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) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:91
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.LogFile.GetReader () [0x00001] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/LogFile.cs:58
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.AppInstallMonitorLog.GetReader () [0x00000] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/AppInstallMonitorLog.cs:48
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0073c] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunDevice.cs:133
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x010e0] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunDevice.cs:219
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:282 )
  • [NUnit] Mono BCL tests group 1/iOS Unified 64-bits - device/Debug: HarnessException (Harness exception for '[NUnit] Mono BCL tests group 1': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/myagent/_work/6/s/jenkins-results/tests/[NUnit] Mono BCL tests group 1/460/install-20200824_095005.log"
    File name: '/Users/xamarinqa/myagent/_work/6/s/jenkins-results/tests/[NUnit] Mono BCL tests group 1/460/install-20200824_095005.log'
    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) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:91
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.LogFile.GetReader () [0x00001] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/LogFile.cs:58
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.AppInstallMonitorLog.GetReader () [0x00000] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/AppInstallMonitorLog.cs:48
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0073c] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunDevice.cs:133
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x010e0] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunDevice.cs:219
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:282 )
  • [NUnit] Mono BCL tests group 2/iOS Unified 64-bits - device/Debug: HarnessException (Harness exception for '[NUnit] Mono BCL tests group 2': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/myagent/_work/6/s/jenkins-results/tests/[NUnit] Mono BCL tests group 2/468/install-20200824_095121.log"
    File name: '/Users/xamarinqa/myagent/_work/6/s/jenkins-results/tests/[NUnit] Mono BCL tests group 2/468/install-20200824_095121.log'
    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) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:91
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.LogFile.GetReader () [0x00001] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/LogFile.cs:58
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.AppInstallMonitorLog.GetReader () [0x00000] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/AppInstallMonitorLog.cs:48
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0073c] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunDevice.cs:133
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x010e0] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunDevice.cs:219
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:282 )
  • [xUnit] Mono BCL tests group 3/iOS Unified 64-bits - device/Debug: HarnessException (Harness exception for '[xUnit] Mono BCL tests group 3': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/myagent/_work/6/s/jenkins-results/tests/[xUnit] Mono BCL tests group 3/476/install-20200824_095224.log"
    File name: '/Users/xamarinqa/myagent/_work/6/s/jenkins-results/tests/[xUnit] Mono BCL tests group 3/476/install-20200824_095224.log'
    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) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:91
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.LogFile.GetReader () [0x00001] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/LogFile.cs:58
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.AppInstallMonitorLog.GetReader () [0x00000] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/AppInstallMonitorLog.cs:48
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0073c] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunDevice.cs:133
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x010e0] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunDevice.cs:219
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:282 )
  • [xUnit] Mono BCL tests group 4/iOS Unified 64-bits - device/Debug: HarnessException (Harness exception for '[xUnit] Mono BCL tests group 4': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/myagent/_work/6/s/jenkins-results/tests/[xUnit] Mono BCL tests group 4/484/install-20200824_095316.log"
    File name: '/Users/xamarinqa/myagent/_work/6/s/jenkins-results/tests/[xUnit] Mono BCL tests group 4/484/install-20200824_095316.log'
    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) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:91
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.LogFile.GetReader () [0x00001] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/LogFile.cs:58
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.AppInstallMonitorLog.GetReader () [0x00000] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/AppInstallMonitorLog.cs:48
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0073c] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunDevice.cs:133
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x010e0] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunDevice.cs:219
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:282 )
  • [xUnit] Mono BCL tests group 5/iOS Unified 64-bits - device/Debug: HarnessException (Harness exception for '[xUnit] Mono BCL tests group 5': System.IO.FileNotFoundException: Could not find file "/Users/xamarinqa/myagent/_work/6/s/jenkins-results/tests/[xUnit] Mono BCL tests group 5/492/install-20200824_095403.log"
    File name: '/Users/xamarinqa/myagent/_work/6/s/jenkins-results/tests/[xUnit] Mono BCL tests group 5/492/install-20200824_095403.log'
    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) [0x00000] in /Users/builder/jenkins/workspace/build-package-osx-mono/2020-02/external/bockbuild/builds/mono-x64/mcs/class/corlib/System.IO/FileStream.cs:91
    at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.LogFile.GetReader () [0x00001] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/LogFile.cs:58
    at Microsoft.DotNet.XHarness.iOS.Shared.Logging.AppInstallMonitorLog.GetReader () [0x00000] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Logging/AppInstallMonitorLog.cs:48
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x0073c] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunDevice.cs:133
    at Xharness.TestTasks.RunDevice.RunTestAsync () [0x010e0] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunDevice.cs:219
    at Xharness.TestTasks.RunTest.ExecuteAsync () [0x001b9] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/TestTasks/RunTest.cs:107
    at Microsoft.DotNet.XHarness.iOS.Shared.Tasks.TestTasks.RunInternalAsync () [0x00226] in /Users/xamarinqa/myagent/_work/6/s/tests/xharness/Microsoft.DotNet.XHarness.iOS.Shared/Tasks/TestTask.cs:282 )
  • 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/myagent/_work/6/s/jenkins-results/tests/mscorlib Part 1/500/install-20200824_095503.log"
    File name: '/Users/xamarinqa/myagent/_work/6/s/jenkins-results/tests/mscorlib Part 1/500/install-20200824_095503.log'
    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

@xamarin-release-manager
Copy link
Collaborator

Choose a reason for hiding this comment

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

Build was (probably) aborted

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

Build succeeded
✅ Packages:

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

Test results

# Test run in progress: Built: 115, Running: 1, Succeeded: 36, Failed: 4, Ignored: 1102

Failed tests

  • mscorlib/Mac Full/Debug: Failed (Test run failed.)
  • [NUnit] Mono Mac OS X BCL tests group 2/Mac Modern/Debug: Failed (Test run failed.)
  • mscorlib/Mac Modern/Debug: Failed (Test run failed.)
  • MTouch tests/NUnit: Failed (Execution failed with exit code 6)

@xamarin-release-manager
Copy link
Collaborator

Choose a reason for hiding this comment

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

Build was (probably) aborted

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

Build succeeded
✅ Packages:

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

Test results

7 tests failed, 149 tests passed.

Failed tests

  • mscorlib/Mac Full/Debug: Failed (Test run failed.)
  • mscorlib/Mac Modern/Debug: Failed (Test run failed.)
  • mscorlib Part 2/iOS Unified 64-bits - simulator/Debug: Failed
  • mscorlib Part 2/tvOS - simulator/Debug: Failed
  • mscorlib Part 2/watchOS 32-bits - simulator/Debug: Failed
  • MSBuild tests/iOS (netstandard2.0): Failed (Execution failed with exit code 1)
  • MTouch tests/NUnit: Failed (Execution failed with exit code 6)

Please sign in to comment.