From afbd3336bac5041fd13390b8eb3f3618fd9e3a4d Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Fri, 23 Sep 2022 20:55:53 +0200 Subject: [PATCH] [tests] Ignore the CustomizedCodeSigning test when the selected platform isn't enabled. (#16101) --- tests/dotnet/UnitTests/ProjectTest.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/dotnet/UnitTests/ProjectTest.cs b/tests/dotnet/UnitTests/ProjectTest.cs index 3b8c97fc8d..e6b74c2277 100644 --- a/tests/dotnet/UnitTests/ProjectTest.cs +++ b/tests/dotnet/UnitTests/ProjectTest.cs @@ -1003,6 +1003,7 @@ namespace Xamarin.Tests { public void CustomizedCodeSigning (ApplePlatform platform, string runtimeIdentifiers) { var project = "CustomizedCodeSigning"; + Configuration.IgnoreIfIgnoredPlatform (platform); var properties = GetDefaultProperties (runtimeIdentifiers); var project_path = GetProjectPath (project, runtimeIdentifiers: runtimeIdentifiers, platform: platform, out var appPath);