public BenchmarkExecResult Execute(BenchmarkBuildResult buildResult, BenchmarkParameters parameters, IBenchmarkDiagnoser diagnoser) { var exeName = Path.Combine(buildResult.DirectoryPath, "Program.exe"); var args = parameters == null ? string.Empty : parameters.ToArgs(); if (File.Exists(exeName)) { try { var startInfo = CreateStartInfo(exeName, args); using (var process = Process.Start(startInfo)) { if (process != null) { consoleHandler.SetProcess(process); return ExecuteImpl(process, diagnoser, exeName); } } } finally { if (consoleHandler != null) { consoleHandler.ClearProcess(); } } } return new BenchmarkExecResult(false, new string[0]); }
public BenchmarkExecResult Exec(BenchmarkBuildResult buildResult, BenchmarkParameters parameters) { var exeName = Path.Combine(buildResult.DirectoryPath, "Program.exe"); var args = parameters == null ? string.Empty : parameters.ToArgs(); if (File.Exists(exeName)) { var lines = new List<string>(); var startInfo = CreateStartInfo(exeName, args); using (var process = Process.Start(startInfo)) { if (process != null) { process.PriorityClass = ProcessPriorityClass.High; process.ProcessorAffinity = new IntPtr(2); string line; while ((line = process.StandardOutput.ReadLine()) != null) { logger?.WriteLine(line); if (!line.StartsWith("//") && !string.IsNullOrEmpty(line)) lines.Add(line); // Wait until we know "Warmup" is happening, and then dissassemble the process var shouldExtractCode = (CommandLineArgs.PrintAssembly || CommandLineArgs.PrintIL || CommandLineArgs.PrintDiagnostics); if (codeAlreadyExtracted == false && shouldExtractCode && line.StartsWith("// Warmup") && !line.StartsWith("// Warmup (idle)")) { var codeExtractor = new BenchmarkCodeExtractor(benchmark, process, codeExeName: Assembly.GetEntryAssembly().Location, logger: logger); codeExtractor.PrintCodeForMethod(printAssembly: CommandLineArgs.PrintAssembly, printIL: CommandLineArgs.PrintIL, printDiagnostics: CommandLineArgs.PrintDiagnostics); codeAlreadyExtracted = true; } } if (process.HasExited && process.ExitCode != 0) { if (logger != null) { logger.WriteError( $"Something bad happened during the execution of {exeName}. Try to run the benchmark again using an AnyCPU application\n"); } else { if (exeName.ToLowerInvariant() == "msbuild") Console.WriteLine("Build failed"); } return new BenchmarkExecResult(true, new string[0]); } } } return new BenchmarkExecResult(true, lines); } return new BenchmarkExecResult(false, new string[0]); }
public BenchmarkExecResult Exec(BenchmarkBuildResult buildResult, BenchmarkParameters parameters) { var exeName = Path.Combine(buildResult.DirectoryPath, "Program.exe"); var args = parameters == null ? string.Empty : parameters.ToArgs(); if (File.Exists(exeName)) { var lines = new List<string>(); var startInfo = CreateStartInfo(exeName, args); using (var process = Process.Start(startInfo)) if (process != null) { process.PriorityClass = ProcessPriorityClass.High; process.ProcessorAffinity = new IntPtr(2); string line; while ((line = process.StandardOutput.ReadLine()) != null) { logger?.WriteLine(line); if (!line.StartsWith("//") && !string.IsNullOrEmpty(line)) lines.Add(line); } if (process.HasExited && process.ExitCode != 0) { if (logger != null) { logger.WriteError( $"Something bad happened during the execution of {exeName}. Try to run the benchmark again using an AnyCPU application\n"); } else { if (exeName.ToLowerInvariant() == "msbuild") Console.WriteLine("Build failed"); } return new BenchmarkExecResult(true, new string[0]); } } return new BenchmarkExecResult(true, lines); } return new BenchmarkExecResult(false, new string[0]); }