diff --git a/Src/IronPythonTest/Cases/CaseExecuter.cs b/Src/IronPythonTest/Cases/CaseExecuter.cs index d75cbc047..df0f9a9c2 100644 --- a/Src/IronPythonTest/Cases/CaseExecuter.cs +++ b/Src/IronPythonTest/Cases/CaseExecuter.cs @@ -30,7 +30,7 @@ private static string Executable { var folder = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location); string runner; if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) { - runner = Path.Combine(folder, "ipy.exe"); + runner = Path.Combine(folder, IntPtr.Size == 4 ? "ipy32.exe" : "ipy.exe"); if (File.Exists(runner)) return runner; } else if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux) || RuntimeInformation.IsOSPlatform(OSPlatform.OSX)) { runner = Path.Combine(folder, "ipy");