Skip to content

Commit 2e16109

Browse files
committed
AssetPackTests.BuildApplicationWithAssetPack updated
1 parent 7c85874 commit 2e16109

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/AssetPackTests.cs

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -160,13 +160,11 @@ public void BuildApplicationWithAssetPackOverrides ([Values] bool isRelease, [Va
160160

161161
[Test]
162162
[Category ("SmokeTests")]
163-
[TestCase (false, AndroidRuntime.MonoVM)]
164-
[TestCase (true, AndroidRuntime.MonoVM)]
165-
[TestCase (false, AndroidRuntime.CoreCLR)]
166-
[TestCase (true, AndroidRuntime.CoreCLR)]
167-
[TestCase (true, AndroidRuntime.NativeAOT)]
168-
public void BuildApplicationWithAssetPack (bool isRelease, AndroidRuntime runtime)
163+
public void BuildApplicationWithAssetPack ([Values] bool isRelease, [Values] AndroidRuntime runtime)
169164
{
165+
if (IgnoreUnsupportedConfiguration (runtime, release: isRelease)) {
166+
return;
167+
}
170168
var path = Path.Combine ("temp", TestName);
171169
var asset3 = new AndroidItem.AndroidAsset ("Assets\\asset3.txt") {
172170
TextContent = () => "Asset3",

0 commit comments

Comments
 (0)