Fix incorrect RunBenchmarks help text
authorMike Danes <onemihaid@hotmail.com>
Wed, 6 Jul 2016 18:29:06 +0000 (21:29 +0300)
committerMike Danes <onemihaid@hotmail.com>
Wed, 6 Jul 2016 18:29:06 +0000 (21:29 +0300)
RunBenchmark's help text claims that there's a -coreclr option when in fact the option is -runner.

tests/src/JIT/Performance/RunBenchmarks/RunBenchmarks.cs

index 8c87b75..d5920e4 100644 (file)
@@ -441,7 +441,7 @@ namespace BenchmarkConsoleApplication
             Console.WriteLine("   -listsuites    prints a list of the suite names and does nothing else");
             Console.WriteLine("   -listtags      prints a list of the tag names and does nothing else");
             Console.WriteLine("   -listexes      prints a list of the benchmark executables and does nothing else");
-            Console.WriteLine("   -coreclr       run benchmarks on CoreCLR (default DesktopCLR)");
+            Console.WriteLine("   -runner        runner to be used to run benchmarks (e.g. corerun, default is DesktopCLR)");
             Console.WriteLine("   -complus_version <version> run benchmarks on particular DesktopCLR version");
             Console.WriteLine("   -run           run benchmarks");
             Console.WriteLine("   -norun         prints what would be run, but nothing is executed");