Skip to content

Commit a8df103

Browse files
committed
AssetPackTests.BuildApplicationWithAssetPackOutsideProjectDirectory updated
1 parent 0c8b9ee commit a8df103

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
@@ -69,13 +69,11 @@ public void BuildApplicationWithAssetPackThatHasInvalidName ([Values] bool isRel
6969

7070
[Test]
7171
[Category ("SmokeTests")]
72-
[TestCase (false, AndroidRuntime.MonoVM)]
73-
[TestCase (true, AndroidRuntime.MonoVM)]
74-
[TestCase (false, AndroidRuntime.CoreCLR)]
75-
[TestCase (true, AndroidRuntime.CoreCLR)]
76-
[TestCase (true, AndroidRuntime.NativeAOT)]
77-
public void BuildApplicationWithAssetPackOutsideProjectDirectory (bool isRelease, AndroidRuntime runtime)
72+
public void BuildApplicationWithAssetPackOutsideProjectDirectory ([Values] bool isRelease, [Values] AndroidRuntime runtime)
7873
{
74+
if (IgnoreUnsupportedConfiguration (runtime, release: isRelease)) {
75+
return;
76+
}
7977
var path = Path.Combine ("temp", TestName);
8078
var app = new XamarinAndroidApplicationProject {
8179
ProjectName = "MyApp",

0 commit comments

Comments
 (0)