示例#1
0
 public ProfilerProcessor(StressTestOptions.ProfilerOptions options)
 {
     this.Options     = options;
     visitor          = new Visitor(this);
     processingThread = new Thread(new ThreadStart(ProcessFile));
     processingThread.Start();
 }
示例#2
0
        public StressTestApp(StressTestOptions options)
        {
            Iterations      = options.Iterations;
            ProfilerOptions = options.Profiler;
            if (!string.IsNullOrEmpty(options.MonoDevelopBinPath))
            {
                MonoDevelopBinPath = options.MonoDevelopBinPath;
            }

            if (options.UseInstalledApplication)
            {
                MonoDevelopBinPath = GetInstalledVisualStudioBinPath();
            }
        }