Skip to content

Commit 02c0ec9

Browse files
committed
Let's see what's in the override dir listing
1 parent 763901a commit 02c0ec9

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tests/MSBuildDeviceIntegration/Tests/InstallTests.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,7 @@ public void InstallWithoutSharedRuntime ()
201201
//Assert.AreEqual (0, RunAdbCommand ("shell pm list packages Mono.Android.DebugRuntime").Trim ().Length,
202202
// "The Shared Runtime should not have been installed.");
203203
var directorylist = GetContentFromAllOverrideDirectories (proj.PackageName, DeviceAbi);
204+
Console.WriteLine ($"InstallWithoutSharedRuntime: directoryList == '{directorylist}'");
204205
StringAssert.Contains ($"{proj.ProjectName}.dll", directorylist, $"{proj.ProjectName}.dll should exist in the .__override__/{DeviceAbi} directory.");
205206
StringAssert.Contains ($"System.Private.CoreLib.dll", directorylist, $"System.Private.CoreLib.dll should exist in the .__override__/{DeviceAbi} directory.");
206207
StringAssert.Contains ($"Mono.Android.dll", directorylist, $"Mono.Android.dll should exist in the .__override__/{DeviceAbi} directory.");
@@ -546,7 +547,7 @@ public void IncrementalFastDeployment (string packageFormat)
546547
}
547548

548549
long lib1FirstBuildSize = new FileInfo (Path.Combine (rootPath, lib1.ProjectName, lib1.OutputPath, "Library1.dll")).Length;
549-
550+
550551
using (var builder = CreateApkBuilder (Path.Combine (rootPath, app.ProjectName))) {
551552
builder.Verbosity = LoggerVerbosity.Detailed;
552553
builder.ThrowOnBuildFailure = false;
@@ -653,7 +654,7 @@ public void AppWithAndroidJavaSource ()
653654
public class TestJavaClass2 {
654655
655656
public String test(){
656-
657+
657658
return ""Java is called"";
658659
}
659660
}",
@@ -671,7 +672,7 @@ public String test(){
671672
public class TestJavaClass {
672673
673674
public String test(){
674-
675+
675676
return ""Java is called"";
676677
}
677678
}",

0 commit comments

Comments
 (0)