Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Requested changes
  • Loading branch information
grendello committed Mar 17, 2022
commit 7d9845e5a16598e39de60be393eef5afe2051f0f
Original file line number Diff line number Diff line change
Expand Up @@ -143,12 +143,11 @@ public void CheckAssemblyCounts (bool isRelease, bool aot)
}
}

// DotNet fails, see https://github.com/xamarin/xamarin-android/issues/6685
// DotNet fails, see https://github.com/dotnet/runtime/issues/65484
// Enable the commented out signature (and AOT) once the above is fixed
[Test]
[Category ("SmokeTests")]
// public void SmokeTestBuildWithSpecialCharacters ([Values (false, true)] bool forms, [Values (false, true)] bool aot)
public void SmokeTestBuildWithSpecialCharacters ([Values (false, true)] bool forms)
public void SmokeTestBuildWithSpecialCharacters ([Values (false, true)] bool forms, [Values (false /*, true*/)] bool aot)
{
var testName = "テスト";

Expand All @@ -158,7 +157,7 @@ public void SmokeTestBuildWithSpecialCharacters ([Values (false, true)] bool for
new XamarinAndroidApplicationProject ();
proj.ProjectName = testName;
proj.IsRelease = true;
proj.AotAssemblies = false; /* = true; once AOT is fixed */
proj.AotAssemblies = aot;

if (forms) {
proj.PackageReferences.Clear ();
Expand Down