Skip to content

Commit 08348d3

Browse files
committed
*Are* we in a 32-bit process?
In c14ebb6 + 6babd68, we learned that `C:\hostedtoolcache\windows\dotnet\dotnet.exe` *is* in fact a 64-bit process. Thus, a verification check: is the conjecture that we're in a 32-bit process correct? Add some debug writelines to find out!
1 parent c14ebb6 commit 08348d3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/Java.Interop-Tests/Java.Interop/JavaVMFixture.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ partial class JavaVMFixture {
1212

1313
static partial void CreateJavaVM ()
1414
{
15+
Console.Error.WriteLine($"# jonp: 64-bit process? {Environment.Is64BitProcess}");
16+
Console.Error.Flush();
1517
var c = new TestJVM (
1618
jars: new[]{ "interop-test.jar" },
1719
typeMappings: new Dictionary<string, Type> () {

0 commit comments

Comments
 (0)