Skip to content

Commit 368358b

Browse files
committed
fix a test
1 parent 7246b29 commit 368358b

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.external

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
xamarin/monodroid:fastdevv2@4d50eaca45678d11705406724642a252f41e91c3
1+
xamarin/monodroid:fastdevv2@0a43ffec4dda8d35878bad638d54211ebebec6f9
22
mono/mono:2020-02@075c3f06197e3b969f4234d0f56a2e10ee6ee305

tests/MSBuildDeviceIntegration/Tests/InstantRunTest.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public void InstantRunSimpleBuild ([Values ("dx", "d8")] string dexTool)
4848
File.Delete (dexFile);
4949
}
5050
}
51-
51+
5252
b.Dispose ();
5353
}
5454

@@ -310,12 +310,17 @@ public void InstantRunNativeLibrary ([Values ("dx", "d8")] string dexTool)
310310
BinaryContent = () => new byte [10],
311311
MetadataValues = "Link=libs\\x86_64\\libtest.so",
312312
};
313+
var nativeLibx86 = new AndroidItem.AndroidNativeLibrary ("foo\\x86\\libtest.so") {
314+
BinaryContent = () => new byte [10],
315+
MetadataValues = "Link=libs\\x86\\libtest.so",
316+
};
313317
var proj = new XamarinAndroidApplicationProject () {
314318
AndroidFastDeploymentType = "Assemblies:Dexes",
315319
UseLatestPlatformSdk = true,
316320
DexTool = dexTool,
317321
OtherBuildItems = {
318322
nativeLib,
323+
nativeLibx86,
319324
},
320325
};
321326
proj.SetDefaultTargetDevice ();

0 commit comments

Comments
 (0)