Skip to content

Commit 7c85874

Browse files
committed
AssetPackTests.BuildApplicationWithAssetPackOverrides updated
1 parent a8df103 commit 7c85874

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
@@ -118,13 +118,11 @@ public void BuildApplicationWithAssetPackOutsideProjectDirectory ([Values] bool
118118

119119
[Test]
120120
[Category ("SmokeTests")]
121-
[TestCase (false, AndroidRuntime.MonoVM)]
122-
[TestCase (true, AndroidRuntime.MonoVM)]
123-
[TestCase (false, AndroidRuntime.CoreCLR)]
124-
[TestCase (true, AndroidRuntime.CoreCLR)]
125-
[TestCase (true, AndroidRuntime.NativeAOT)]
126-
public void BuildApplicationWithAssetPackOverrides (bool isRelease, AndroidRuntime runtime)
121+
public void BuildApplicationWithAssetPackOverrides ([Values] bool isRelease, [Values] AndroidRuntime runtime)
127122
{
123+
if (IgnoreUnsupportedConfiguration (runtime, release: isRelease)) {
124+
return;
125+
}
128126
var path = Path.Combine ("temp", TestName);
129127
var app = new XamarinAndroidApplicationProject {
130128
ProjectName = "MyApp",

0 commit comments

Comments
 (0)