Browse Source

Rename local variable

pull/1158/head
Wiesław Šoltés 9 years ago
parent
commit
c9a5247d3f
  1. 4
      build.cake

4
build.cake

@ -353,11 +353,11 @@ Task("Run-Leak-Tests")
if(System.IO.File.Exists(report))
System.IO.File.Delete(report);
var tool = Context.Tools.Resolve("xunit.console.x86.exe").FullPath;
var toolXunitConsoleX86 = Context.Tools.Resolve("xunit.console.x86.exe").FullPath;
var proc = System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo
{
FileName="tests\\Avalonia.LeakTests\\toolproject\\bin\\dotMemoryUnit.exe",
Arguments="-targetExecutable=\"" + tool + "\" -returnTargetExitCode -- tests\\Avalonia.LeakTests\\bin\\Release\\Avalonia.LeakTests.dll -xml tests\\Avalonia.LeakTests\\bin\\Release\\report.xml ",
Arguments="-targetExecutable=\"" + toolXunitConsoleX86 + "\" -returnTargetExitCode -- tests\\Avalonia.LeakTests\\bin\\Release\\Avalonia.LeakTests.dll -xml tests\\Avalonia.LeakTests\\bin\\Release\\report.xml ",
UseShellExecute = false,
});
var st = System.Diagnostics.Stopwatch.StartNew();

Loading…
Cancel
Save