Skip to content

Commit

Permalink
[mtouch/mmp] Rework how we find developer tools. Partial fix for #4634
Browse files Browse the repository at this point in the history
…and fixes #8005. (#8121)

Partial fix for #4634.
Fixes #8005.
  • Loading branch information
rolfbjarne authored Mar 17, 2020
1 parent 723ec18 commit 13a56ff
Show file tree
Hide file tree
Showing 24 changed files with 620 additions and 350 deletions.
2 changes: 1 addition & 1 deletion tests/mmptest/src/MMPTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public static string [] GetUnifiedProjectClangInvocation (string tmpDir, string
TI.UnifiedTestConfig test = new TI.UnifiedTestConfig (tmpDir) { CSProjConfig = projectConfig };
string buildOutput = TI.TestUnifiedExecutable (test).BuildOutput;
string [] splitBuildOutput = TI.TestUnifiedExecutable (test).BuildOutput.Split (new string[] { Environment.NewLine }, StringSplitOptions.None);
string clangInvocation = splitBuildOutput.Single (x => x.Contains ("clang"));
string clangInvocation = splitBuildOutput.Single (x => x.Contains ("usr/bin/clang"));
return clangInvocation.Split (new string[] { " " }, StringSplitOptions.None);
}

Expand Down
2 changes: 1 addition & 1 deletion tests/mmptest/src/NativeReferencesTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public void Unified_WithStaticNativeRef_ClangIncludesOurStaticLib ()
MMPTests.RunMMPTest (tmpDir => {
TI.UnifiedTestConfig test = new TI.UnifiedTestConfig (tmpDir) { ItemGroup = CreateSingleNativeRef (SimpleStaticPath, "Static") };
NativeReferenceTestCore (tmpDir, test, "Unified_WithNativeReferences_InMainProjectWorks - Static", null, true, false, s => {
string clangLine = s.Split ('\n').First (x => x.Contains ("xcrun -sdk macosx clang"));
string clangLine = s.Split ('\n').First (x => x.Contains ("usr/bin/clang"));
return clangLine.Contains ("SimpleClassStatic.a");
});
});
Expand Down
179 changes: 157 additions & 22 deletions tools/common/Driver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -754,28 +754,6 @@ static void ValidateXcode (bool accept_any_xcode_version, bool warn_if_not_found
Driver.Log (1, "Using Xcode {0} ({2}) found in {1}", XcodeVersion, sdk_root, XcodeProductVersion);
}

public static int XcodeRun (string command, params string [] arguments)
{
return XcodeRun (command, (IList<string>) arguments, null);
}

public static int XcodeRun (string command, IList<string> arguments, StringBuilder output = null)
{
string [] env = DeveloperDirectory != String.Empty ? new string [] { "DEVELOPER_DIR", DeveloperDirectory } : null;
var args = new List<string> ();
args.Add ("-sdk");
args.Add ("macosx");
args.Add (command);
args.AddRange (arguments);
int ret = RunCommand ("xcrun", args, env, output);
if (ret != 0 && Verbosity > 1) {
StringBuilder debug = new StringBuilder ();
RunCommand ("xcrun", new [] { "--find", command }, env, debug);
Console.WriteLine ("failed using `{0}` from: {1}", command, debug);
}
return ret;
}

internal static bool TryParseBool (string value, out bool result)
{
if (string.IsNullOrEmpty (value)) {
Expand Down Expand Up @@ -809,5 +787,162 @@ internal static bool ParseBool (string value, string name, bool show_error = tru
return result;
}

static readonly Dictionary<string, string> tools = new Dictionary<string, string> ();
static string FindTool (string tool)
{
string path;

lock (tools) {
if (tools.TryGetValue (tool, out path))
return path;
}

path = LocateTool (tool);
static string LocateTool (string tool)
{
if (XcrunFind (tool, out var path))
return path;

// either /Developer (Xcode 4.2 and earlier), /Applications/Xcode.app/Contents/Developer (Xcode 4.3) or user override
path = Path.Combine (DeveloperDirectory, "usr", "bin", tool);
if (File.Exists (path))
return path;

// Xcode 4.3 (without command-line tools) also has a copy of 'strip'
path = Path.Combine (DeveloperDirectory, "Toolchains", "XcodeDefault.xctoolchain", "usr", "bin", tool);
if (File.Exists (path))
return path;

// Xcode "Command-Line Tools" install a copy in /usr/bin (and it can be there afterward)
path = Path.Combine ("/usr", "bin", tool);
if (File.Exists (path))
return path;

return null;
}

// We can end up finding the same tool multiple times.
// That's not a problem.
lock (tools)
tools [tool] = path;

if (path == null)
throw ErrorHelper.CreateError (5307, Errors.MX5307 /* Missing '{0}' tool. Please install Xcode 'Command-Line Tools' component */, tool);

return path;
}

static bool XcrunFind (string tool, out string path)
{
return XcrunFind (ApplePlatform.None, false, tool, out path);
}

static bool XcrunFind (ApplePlatform platform, bool is_simulator, string tool, out string path)
{
var env = new List<string> ();
// Unset XCODE_DEVELOPER_DIR_PATH. See https://github.com/xamarin/xamarin-macios/issues/3931.
env.Add ("XCODE_DEVELOPER_DIR_PATH");
env.Add (null);
// Set DEVELOPER_DIR if we have it
if (!string.IsNullOrEmpty (DeveloperDirectory)) {
env.Add ("DEVELOPER_DIR");
env.Add (DeveloperDirectory);
}

path = null;

var args = new List<string> ();
if (platform != ApplePlatform.None) {
args.Add ("-sdk");
switch (platform) {
case ApplePlatform.iOS:
args.Add (is_simulator ? "iphonesimulator" : "iphoneos");
break;
case ApplePlatform.MacOSX:
args.Add ("macosx");
break;
case ApplePlatform.TVOS:
args.Add (is_simulator ? "appletvsimulator" : "appletvos");
break;
case ApplePlatform.WatchOS:
args.Add (is_simulator ? "watchsimulator" : "watchos");
break;
default:
throw ErrorHelper.CreateError (71, Errors.MX0071 /* Unknown platform: {0}. This usually indicates a bug in {1}; please file a bug report at https://github.com/xamarin/xamarin-macios/issues/new with a test case. */, platform.ToString (), PRODUCT);
}
}
args.Add ("-f");
args.Add (tool);

var output = new StringBuilder ();
int ret = RunCommand ("xcrun", args, env.ToArray (), output);

if (ret == 0) {
path = output.ToString ().Trim ();
} else {
Log (1, "Failed to locate the developer tool '{0}', 'xcrun {1}' returned with the exit code {2}:\n{3}", tool, string.Join (" ", args), ret, output.ToString ());
}

return ret == 0;
}

public static void RunXcodeTool (string tool, params string[] arguments)
{
RunXcodeTool (tool, (IList<string>) arguments);
}

public static void RunXcodeTool (string tool, IList<string> arguments)
{
var executable = FindTool (tool);
var rv = RunCommand (executable, arguments);
if (rv != 0)
throw ErrorHelper.CreateError (5309, Errors.MX5309 /* Failed to execute the tool '{0}', it failed with an error code '{1}'. Please check the build log for details. */, tool, rv);
}

public static void RunClang (IList<string> arguments)
{
RunXcodeTool ("clang", arguments);
}

public static void RunInstallNameTool (IList<string> arguments)
{
RunXcodeTool ("install_name_tool", arguments);
}

public static void RunBitcodeStrip (IList<string> arguments)
{
RunXcodeTool ("bitcode_strip", arguments);
}

public static void RunLipo (string output, IEnumerable<string> inputs)
{
var sb = new List<string> ();
sb.AddRange (inputs);
sb.Add ("-create");
sb.Add ("-output");
sb.Add (output);
RunLipo (sb);
}

public static void RunLipo (IList<string> options)
{
RunXcodeTool ("lipo", options);
}

public static void CreateDsym (string output_dir, string appname, string dsym_dir)
{
RunDsymUtil (Path.Combine (output_dir, appname), "-num-threads", "4", "-z", "-o", dsym_dir);
RunCommand ("/usr/bin/mdimport", dsym_dir);
}

public static void RunDsymUtil (params string [] options)
{
RunXcodeTool ("dsymutil", options);
}

public static void RunStrip (IList<string> options)
{
RunXcodeTool ("strip", options);
}
}
}
1 change: 1 addition & 0 deletions tools/mmp/Application.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ public partial class Application
public bool Is32Build => false;
public bool Is64Build => true;
public bool IsDualBuild => false;
public bool IsSimulatorBuild => false;

bool RequiresXcodeHeaders => Driver.Registrar == RegistrarMode.Static && LinkMode == LinkMode.None;

Expand Down
41 changes: 9 additions & 32 deletions tools/mmp/driver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -758,17 +758,9 @@ static void Pack (IList<string> unprocessed)
Watch ("Copy Dependencies", 1);

// MDK check
var ret = Compile ();
Compile ();
Watch ("Compile", 1);
if (ret != 0) {
if (ret == 1)
throw new MonoMacException (5109, true, Errors.MM5109);
if (ret == 69)
throw new MonoMacException (5308, true, Errors.MM5308);
// if not then the compilation really failed
throw new MonoMacException (5103, true, Errors.MM5103, ret);
}


if (generate_plist)
GeneratePList ();

Expand Down Expand Up @@ -1032,10 +1024,8 @@ static void CheckSystemMonoVersion ()
throw ErrorHelper.CreateError (1, Errors.MM0001, MonoVersions.MinimumMonoVersion, mono_version);
}

static int Compile ()
static void Compile ()
{
int ret = 1;

string [] cflags = Array.Empty<string> ();

string mainSource = GenerateMain ();
Expand Down Expand Up @@ -1270,13 +1260,10 @@ static int Compile ()
sourceFiles.Add (main);
args.AddRange (sourceFiles);


ret = XcodeRun ("clang", args, null);
RunClang (args);
} catch (Win32Exception e) {
throw new MonoMacException (5103, true, e, Errors.MM5103, "driver");
}

return ret;
}

static string RunPkgConfig (string option, bool force_system_mono = false)
Expand Down Expand Up @@ -1425,9 +1412,7 @@ static void CopyDependencies (IDictionary<string, List<MethodDefinition>> librar
string libName = Path.GetFileName (linkWith);
string finalLibPath = Path.Combine (mmp_dir, libName);
Application.UpdateFile (linkWith, finalLibPath);
int ret = XcodeRun ("install_name_tool", new [] { "-id", "@executable_path/../" + BundleName + "/" + libName, finalLibPath });
if (ret != 0)
throw new MonoMacException (5310, true, Errors.MM5310, ret);
RunInstallNameTool (new [] { "-id", "@executable_path/../" + BundleName + "/" + libName, finalLibPath });
native_libraries_copied_in.Add (libName);
}
}
Expand Down Expand Up @@ -1455,10 +1440,7 @@ static void CopyDependencies (IDictionary<string, List<MethodDefinition>> librar
}
// if required update the paths inside the .dylib that was copied
if (sb.Count > 0) {
sb.Add (library);
int ret = XcodeRun ("install_name_tool", sb);
if (ret != 0)
throw new MonoMacException (5310, true, Errors.MM5310, ret);
RunInstallNameTool (sb);
sb.Clear ();
}
}
Expand Down Expand Up @@ -1595,11 +1577,8 @@ static void ProcessNativeLibrary (HashSet<string> processed, string library, Lis
LipoLibrary (name, dest);

if (native_references.Contains (real_src)) {
if (!isStaticLib) {
int ret = XcodeRun ("install_name_tool", new [] { "-id", "@executable_path/../" + BundleName + "/" + name, dest });
if (ret != 0)
throw new MonoMacException (5310, true, Errors.MM5310, ret);
}
if (!isStaticLib)
RunInstallNameTool (new [] { "-id", "@executable_path/../" + BundleName + "/" + name, dest });
native_libraries_copied_in.Add (name);
}

Expand Down Expand Up @@ -1631,9 +1610,7 @@ static void LipoLibrary (string name, string dest)
if (existingArchs.Count () < 2)
return;

int ret = XcodeRun ("lipo", new [] { dest, "-thin", arch, "-output", dest });
if (ret != 0)
throw new MonoMacException (5311, true, Errors.MM5311, ret);
RunLipo (new [] { dest, "-thin", arch, "-output", dest });
if (name != "MonoPosixHelper" && name != "libmono-native-unified" && name != "libmono-native-compat")
ErrorHelper.Warning (2108, Errors.MM2108, name, arch);
}
Expand Down
1 change: 1 addition & 0 deletions tools/mmp/mmp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<AssemblyName>mmp</AssemblyName>
<RootNamespace>mmp</RootNamespace>
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
<LangVersion>8.0</LangVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>
Expand Down
4 changes: 2 additions & 2 deletions tools/mtouch/Application.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1811,7 +1811,7 @@ void BuildBundle ()
Driver.RunLipo (targetPath, files);
}
if (LibMonoLinkMode == AssemblyBuildTarget.Framework)
Driver.XcodeRun ("install_name_tool", "-change", "@rpath/libmonosgen-2.0.dylib", "@rpath/Mono.framework/Mono", targetPath);
Driver.RunInstallNameTool (new [] { "-change", "@rpath/libmonosgen-2.0.dylib", "@rpath/Mono.framework/Mono", targetPath });

// Remove architectures we don't care about.
if (IsDeviceBuild)
Expand Down Expand Up @@ -1863,7 +1863,7 @@ public void StripBitcode (string macho_file)
}
sb.Add ("-o");
sb.Add (macho_file);
Driver.XcodeRun ("bitcode_strip", sb);
Driver.RunBitcodeStrip (sb);
}

// Returns true if is up-to-date
Expand Down
2 changes: 1 addition & 1 deletion tools/mtouch/Target.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1716,7 +1716,7 @@ public static void AdjustDylibs (string output)
}
if (sb.Count > 0) {
sb.Add (output);
Driver.XcodeRun ("install_name_tool", sb);
Driver.RunInstallNameTool (sb);
sb.Clear ();
}
}
Expand Down
Loading

4 comments on commit 13a56ff

@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.10'' 🔥

Build succeeded
✅ Packages:

API Diff (from stable)
API Diff (from PR only) (no change)
ℹ️ Generator Diff (please review changes)
🔥 Xamarin.Mac tests on 10.10 failed: Xamarin.Mac tests on macOS 10.10 failed (xammac_tests) 🔥
🔥 Test run failed 🔥

Test results

1 tests failed, 184 tests passed.

Failed tests

  • monotouch-test/iOS Unified 64-bits - simulator/Debug (static registrar): Failed

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

Test results

2 tests failed, 161 tests' device not found, 148 tests passed.

Failed tests

  • monotouch-test/iOS Unified 64-bits - device/Release (all optimizations): Failed
  • monotouch-test/iOS Unified 64-bits - device/Debug (all optimizations): Failed

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

🚧 Experimental DDFun pipeline

🔥 Device tests completed (Failed) on iOS-DDFun on Azure DevOps(iOS-DDFun) 🔥

Test results

143 tests failed, 7 tests' device not found, 0 tests passed.

Failed tests

  • monotouch-test/iOS Unified 64-bits - device/Debug: Crashed
  • framework-test/iOS Unified 64-bits - device/Debug: Crashed
  • interdependent-binding-projects/iOS Unified 64-bits - device/Debug: Crashed
  • fsharp/iOS Unified 64-bits - device/Debug: Crashed
  • dont link/iOS Unified 64-bits - device/Debug: Crashed
  • link all/iOS Unified 64-bits - device/Debug: Crashed
  • link sdk/iOS Unified 64-bits - device/Debug: Crashed
  • mono-native-compat/iOS Unified 64-bits - device/Debug: Crashed
  • [NUnit] Mono BCL tests group 1/iOS Unified 64-bits - device/Debug: TimedOut
  • [NUnit] Mono BCL tests group 2/iOS Unified 64-bits - device/Debug: TimedOut
  • [xUnit] Mono BCL tests group 3/iOS Unified 64-bits - device/Debug: Crashed
  • [xUnit] Mono BCL tests group 4/iOS Unified 64-bits - device/Debug: Crashed
  • [xUnit] Mono BCL tests group 5/iOS Unified 64-bits - device/Debug: Crashed
  • mscorlib Part 1/iOS Unified 64-bits - device/Debug: TimedOut
  • mscorlib Part 2/iOS Unified 64-bits - device/Debug: TimedOut
  • mscorlib Part 3/iOS Unified 64-bits - device/Debug: TimedOut
  • [xUnit] Mono SystemCoreXunit Part 1/iOS Unified 64-bits - device/Debug: Crashed
  • [xUnit] Mono SystemCoreXunit Part 2/iOS Unified 64-bits - device/Debug: TimedOut
  • [xUnit] Mono SystemXunit/iOS Unified 64-bits - device/Debug: TimedOut
  • monotouch-test/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): Crashed
  • monotouch-test/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): Crashed
  • monotouch-test/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Crashed
  • monotouch-test/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Crashed
  • monotouch-test/iOS Unified 64-bits - device/Release: Crashed
  • monotouch-test/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Crashed
  • monotouch-test/iOS Unified 64-bits - device/Debug (dynamic registrar): Crashed
  • monotouch-test/iOS Unified 64-bits - device/Release (all optimizations): Crashed
  • monotouch-test/iOS Unified 64-bits - device/Debug (all optimizations): Crashed
  • monotouch-test/iOS Unified 64-bits - device/Debug: SGenConc: Crashed
  • monotouch-test/iOS Unified 64-bits - device/Debug (interpreter): TimedOut
  • monotouch-test/iOS Unified 64-bits - device/Debug (interpreter -mscorlib): TimedOut
  • monotouch-test/iOS Unified 64-bits - device/Release (interpreter -mscorlib): Crashed
  • framework-test/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): Crashed
  • framework-test/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): Crashed
  • framework-test/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Crashed
  • framework-test/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Crashed
  • framework-test/iOS Unified 64-bits - device/Release: Crashed
  • framework-test/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Crashed
  • interdependent-binding-projects/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): Crashed
  • interdependent-binding-projects/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): Crashed
  • interdependent-binding-projects/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Crashed
  • interdependent-binding-projects/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Crashed
  • interdependent-binding-projects/iOS Unified 64-bits - device/Release: Crashed
  • interdependent-binding-projects/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Crashed
  • fsharp/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): Crashed
  • fsharp/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): Crashed
  • fsharp/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Crashed
  • fsharp/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Crashed
  • fsharp/iOS Unified 64-bits - device/Release: Crashed
  • fsharp/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Crashed
  • dont link/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): Crashed
  • dont link/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): Crashed
  • dont link/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Crashed
  • dont link/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Crashed
  • dont link/iOS Unified 64-bits - device/Release: Crashed
  • dont link/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Crashed
  • link all/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): Crashed
  • link all/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): Crashed
  • link all/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Crashed
  • link all/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Crashed
  • link all/iOS Unified 64-bits - device/Release: Crashed
  • link all/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Crashed
  • link sdk/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): Crashed
  • link sdk/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): Crashed
  • link sdk/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Crashed
  • link sdk/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Crashed
  • link sdk/iOS Unified 64-bits - device/Release: Crashed
  • link sdk/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Crashed
  • mono-native-compat/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): Crashed
  • mono-native-compat/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): Crashed
  • mono-native-compat/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Crashed
  • mono-native-compat/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Crashed
  • mono-native-compat/iOS Unified 64-bits - device/Release: Crashed
  • mono-native-compat/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Crashed
  • [NUnit] Mono BCL tests group 1/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): TimedOut
  • [NUnit] Mono BCL tests group 1/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): TimedOut
  • [NUnit] Mono BCL tests group 1/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): TimedOut
  • [NUnit] Mono BCL tests group 1/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): TimedOut
  • [NUnit] Mono BCL tests group 1/iOS Unified 64-bits - device/Release: TimedOut
  • [NUnit] Mono BCL tests group 1/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): TimedOut
  • [NUnit] Mono BCL tests group 2/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): TimedOut
  • [NUnit] Mono BCL tests group 2/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): TimedOut
  • [NUnit] Mono BCL tests group 2/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): TimedOut
  • [NUnit] Mono BCL tests group 2/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): TimedOut
  • [NUnit] Mono BCL tests group 2/iOS Unified 64-bits - device/Release: TimedOut
  • [NUnit] Mono BCL tests group 2/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): TimedOut
  • [xUnit] Mono BCL tests group 3/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): Crashed
  • [xUnit] Mono BCL tests group 3/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): Crashed
  • [xUnit] Mono BCL tests group 3/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Crashed
  • [xUnit] Mono BCL tests group 3/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Crashed
  • [xUnit] Mono BCL tests group 3/iOS Unified 64-bits - device/Release: Crashed
  • [xUnit] Mono BCL tests group 3/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Crashed
  • [xUnit] Mono BCL tests group 4/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): Crashed
  • [xUnit] Mono BCL tests group 4/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): Crashed
  • [xUnit] Mono BCL tests group 4/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Crashed
  • [xUnit] Mono BCL tests group 4/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Crashed
  • [xUnit] Mono BCL tests group 4/iOS Unified 64-bits - device/Release: Crashed
  • [xUnit] Mono BCL tests group 4/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Crashed
  • [xUnit] Mono BCL tests group 5/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): Crashed
  • [xUnit] Mono BCL tests group 5/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): Crashed
  • [xUnit] Mono BCL tests group 5/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Crashed
  • [xUnit] Mono BCL tests group 5/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Crashed
  • [xUnit] Mono BCL tests group 5/iOS Unified 64-bits - device/Release: Crashed
  • [xUnit] Mono BCL tests group 5/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Crashed
  • mscorlib Part 1/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): TimedOut
  • mscorlib Part 1/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): TimedOut
  • mscorlib Part 1/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Crashed
  • mscorlib Part 1/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): TimedOut
  • mscorlib Part 1/iOS Unified 64-bits - device/Release: TimedOut
  • mscorlib Part 1/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): TimedOut
  • mscorlib Part 1/iOS Unified 64-bits - device/Debug: SGenConc: TimedOut
  • mscorlib Part 2/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): TimedOut
  • mscorlib Part 2/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): TimedOut
  • mscorlib Part 2/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): TimedOut
  • mscorlib Part 2/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): TimedOut
  • mscorlib Part 2/iOS Unified 64-bits - device/Release: TimedOut
  • mscorlib Part 2/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): TimedOut
  • mscorlib Part 2/iOS Unified 64-bits - device/Debug: SGenConc: TimedOut
  • mscorlib Part 3/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): TimedOut
  • mscorlib Part 3/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): TimedOut
  • mscorlib Part 3/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): TimedOut
  • mscorlib Part 3/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): TimedOut
  • mscorlib Part 3/iOS Unified 64-bits - device/Release: TimedOut
  • mscorlib Part 3/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): TimedOut
  • mscorlib Part 3/iOS Unified 64-bits - device/Debug: SGenConc: TimedOut
  • [xUnit] Mono SystemCoreXunit Part 1/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): Crashed
  • [xUnit] Mono SystemCoreXunit Part 1/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): Crashed
  • [xUnit] Mono SystemCoreXunit Part 1/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Crashed
  • [xUnit] Mono SystemCoreXunit Part 1/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Crashed
  • [xUnit] Mono SystemCoreXunit Part 1/iOS Unified 64-bits - device/Release: Crashed
  • [xUnit] Mono SystemCoreXunit Part 1/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Crashed
  • [xUnit] Mono SystemCoreXunit Part 2/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): TimedOut
  • [xUnit] Mono SystemCoreXunit Part 2/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): TimedOut
  • [xUnit] Mono SystemCoreXunit Part 2/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): TimedOut
  • [xUnit] Mono SystemCoreXunit Part 2/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): TimedOut
  • [xUnit] Mono SystemCoreXunit Part 2/iOS Unified 64-bits - device/Release: Crashed
  • [xUnit] Mono SystemCoreXunit Part 2/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): Crashed
  • [xUnit] Mono SystemXunit/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug): TimedOut
  • [xUnit] Mono SystemXunit/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug): TimedOut
  • [xUnit] Mono SystemXunit/iOS Unified 64-bits - device/AssemblyBuildTarget: dylib (debug, profiling): TimedOut
  • [xUnit] Mono SystemXunit/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): TimedOut
  • [xUnit] Mono SystemXunit/iOS Unified 64-bits - device/Release: TimedOut
  • [xUnit] Mono SystemXunit/iOS Unified 64-bits - device/AssemblyBuildTarget: SDK framework (release): TimedOut

@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 iOS32b on Azure DevOps(iOS32b): Html Report 🔥

Test results

21 tests failed, 140 tests passed.

Failed tests

  • [xUnit] Mono BCL tests group 4/iOS Unified 32-bits - device/Debug: Failed
  • mscorlib Part 2/iOS Unified 32-bits - device/Debug: Failed
  • dont link/iOS Unified 32-bits - device/AssemblyBuildTarget: SDK framework (release): Crashed
  • [NUnit] Mono BCL tests group 2/iOS Unified 32-bits - device/Release: UseThumb: TimedOut
  • [xUnit] Mono BCL tests group 4/iOS Unified 32-bits - device/AssemblyBuildTarget: dylib (debug): Failed
  • [xUnit] Mono BCL tests group 4/iOS Unified 32-bits - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • [xUnit] Mono BCL tests group 4/iOS Unified 32-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • [xUnit] Mono BCL tests group 4/iOS Unified 32-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • mscorlib Part 1/iOS Unified 32-bits - device/AssemblyBuildTarget: dylib (debug): TimedOut
  • mscorlib Part 1/iOS Unified 32-bits - device/Release: BuildFailure
  • mscorlib Part 1/iOS Unified 32-bits - device/Release: UseThumb: BuildFailure
  • mscorlib Part 1/iOS Unified 32-bits - device/AssemblyBuildTarget: SDK framework (release): BuildFailure
  • mscorlib Part 1/iOS Unified 32-bits - device/Debug: SGenConc: TimedOut
  • mscorlib Part 2/iOS Unified 32-bits - device/AssemblyBuildTarget: dylib (debug): Failed
  • mscorlib Part 2/iOS Unified 32-bits - device/AssemblyBuildTarget: SDK framework (debug): Failed
  • mscorlib Part 2/iOS Unified 32-bits - device/AssemblyBuildTarget: dylib (debug, profiling): Failed
  • mscorlib Part 2/iOS Unified 32-bits - device/AssemblyBuildTarget: SDK framework (debug, profiling): Failed
  • mscorlib Part 2/iOS Unified 32-bits - device/Release: Failed
  • mscorlib Part 2/iOS Unified 32-bits - device/Release: UseThumb: Failed
  • mscorlib Part 2/iOS Unified 32-bits - device/AssemblyBuildTarget: SDK framework (release): Failed
  • mscorlib Part 2/iOS Unified 32-bits - device/Debug: SGenConc: Failed

Please sign in to comment.