diff --git a/src/dotnet/CommonOptions.cs b/src/dotnet/CommonOptions.cs
index 30c88663e..ed00f490b 100644
--- a/src/dotnet/CommonOptions.cs
+++ b/src/dotnet/CommonOptions.cs
@@ -37,9 +37,9 @@ namespace Microsoft.DotNet.Cli
.With(name: CommonLocalizableStrings.FrameworkArgumentName)
.ForwardAsSingle(o => $"-property:TargetFramework={o.Arguments.Single()}"));
- public static Option RuntimeOption(string description) =>
+ public static Option RuntimeOption(string description, bool withShortOption = true) =>
Create.Option(
- "-r|--runtime",
+ withShortOption ? "-r|--runtime" : "--runtime",
description,
Accept.ExactlyOneArgument()
.WithSuggestionsFrom(_ => Suggest.RunTimesFromProjectFile())
diff --git a/src/dotnet/commands/dotnet-test/LocalizableStrings.resx b/src/dotnet/commands/dotnet-test/LocalizableStrings.resx
index adb3d2065..88e7762ef 100644
--- a/src/dotnet/commands/dotnet-test/LocalizableStrings.resx
+++ b/src/dotnet/commands/dotnet-test/LocalizableStrings.resx
@@ -205,6 +205,9 @@ Outputs a 'Sequence.xml' file in the current directory that captures the order o
The target framework to run tests for. The target framework must also be specified in the project file.
+
+ The target runtime to test for.
+
The configuration to use for running tests. The default for most projects is 'Debug'.
diff --git a/src/dotnet/commands/dotnet-test/TestCommandParser.cs b/src/dotnet/commands/dotnet-test/TestCommandParser.cs
index 5cdd9336d..765a52072 100644
--- a/src/dotnet/commands/dotnet-test/TestCommandParser.cs
+++ b/src/dotnet/commands/dotnet-test/TestCommandParser.cs
@@ -56,6 +56,7 @@ namespace Microsoft.DotNet.Cli
})),
CommonOptions.ConfigurationOption(LocalizableStrings.ConfigurationOptionDescription),
CommonOptions.FrameworkOption(LocalizableStrings.FrameworkOptionDescription),
+ CommonOptions.RuntimeOption(LocalizableStrings.RuntimeOptionDescription, withShortOption: false),
Create.Option(
"-o|--output",
LocalizableStrings.CmdOutputDescription,
diff --git a/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.cs.xlf b/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.cs.xlf
index 5d7dd27c6..d3884a1dd 100644
--- a/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.cs.xlf
+++ b/src/dotnet/commands/dotnet-test/xlf/LocalizableStrings.cs.xlf
@@ -160,6 +160,11 @@ Výstupem je soubor Sequence.xml v aktuálním adresáři, do kterého se zaznam
Konfigurace, která se má použít pro spuštění testů. Výchozí možností pro většinu projektů je Debug.
+
+
+ The target runtime to test for.
+
+