Skip to content

Commit

Permalink
[tests] ignore BuildAotApplicationAndÜmläüts on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanpeppers committed Jul 10, 2023
1 parent 4d098d8 commit 5ef90a8
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,9 @@ public void BuildAotApplicationWithNdkAndBundleAndÜmläüts (string supportedAb
[TestCaseSource (nameof (AotChecks))]
public void BuildAotApplicationAndÜmläüts (string supportedAbis, bool enableLLVM, bool usesAssemblyBlobs)
{
if (IsWindows)
Assert.Ignore ("https://github.com/dotnet/runtime/issues/88625");

var abisSanitized = supportedAbis.Replace (";", "").Replace ("-", "").Replace ("_", "");
var path = Path.Combine ("temp", string.Format ("BuildAot AndÜmläüts_{0}_{1}_{2}", abisSanitized, enableLLVM, usesAssemblyBlobs));
var proj = new XamarinAndroidApplicationProject () {
Expand Down

0 comments on commit 5ef90a8

Please sign in to comment.