use muxer in TestCommand

This commit is contained in:
Jon Sequeira 2017-03-19 20:28:38 -07:00
parent 1006b30f99
commit 800f19dfdc

View file

@ -134,6 +134,8 @@ namespace Microsoft.DotNet.Tools.Test.Utilities
private Process CreateProcess(string executable, string args) private Process CreateProcess(string executable, string args)
{ {
Console.WriteLine("[CreateProcess] " + new {executable, args});
var psi = new ProcessStartInfo var psi = new ProcessStartInfo
{ {
FileName = executable, FileName = executable,
@ -207,7 +209,7 @@ namespace Microsoft.DotNet.Tools.Test.Utilities
args = newArgs; args = newArgs;
executable = "dotnet"; executable = new Muxer().MuxerPath;
} }
if (!Path.IsPathRooted(executable)) if (!Path.IsPathRooted(executable))