Skip to content

Commit c94b75f

Browse files
authored
Removed '-r2r' shorthand flag due to it conflicting with -r because of a bug in the Command Line API (#56934)
1 parent 3827b7f commit c94b75f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/coreclr/tools/r2rtest/CommandLineOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ Option ExecutionTimeoutMinutes() =>
279279
new Option<int>(new[] { "--execution-timeout-minutes", "-et" }, "Execution timeout (minutes)");
280280

281281
Option R2RDumpPath() =>
282-
new Option<FileInfo>(new[] { "--r2r-dump-path", "-r2r" }, "Path to R2RDump.exe/dll").ExistingOnly();
282+
new Option<FileInfo>(new[] { "--r2r-dump-path" }, "Path to R2RDump.exe/dll").ExistingOnly();
283283

284284
Option MeasurePerf() =>
285285
new Option<bool>(new[] { "--measure-perf" }, "Print out compilation time");

0 commit comments

Comments
 (0)