aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java
diff options
context:
space:
mode:
authorGravatar Googler <noreply@google.com>2017-01-26 16:19:32 +0000
committerGravatar Laszlo Csomor <laszlocsomor@google.com>2017-01-26 23:01:19 +0000
commitcb8f3e566b43e06b10e6f422197f608b520bb518 (patch)
treea820f9bf075bd585edc122a47bee4f47eda155fc /src/main/java
parent5ac6f3e8d6f9d7e36cbfab047b9f9d7352edf2a3 (diff)
Tweak output string phrasing.
This change modifies the warning text that's printed when passing --test_output=streamed. -- PiperOrigin-RevId: 145675853 MOS_MIGRATED_REVID=145675853
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/runtime/commands/TestCommand.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/commands/TestCommand.java b/src/main/java/com/google/devtools/build/lib/runtime/commands/TestCommand.java
index fe9715cc7b..cd31c7d396 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/commands/TestCommand.java
+++ b/src/main/java/com/google/devtools/build/lib/runtime/commands/TestCommand.java
@@ -71,8 +71,8 @@ public class TestCommand implements BlazeCommand {
try {
if (testOutput == TestStrategy.TestOutputFormat.STREAMED) {
env.getReporter().handle(Event.warn(
- "Streamed test output requested so all tests will be run locally, without sharding, " +
- "one at a time"));
+ "Streamed test output requested. All tests will be run locally, without sharding, "
+ + "one at a time"));
optionsParser.parse(OptionPriority.SOFTWARE_REQUIREMENT,
"streamed output requires locally run tests, without sharding",
ImmutableList.of("--test_sharding_strategy=disabled", "--test_strategy=exclusive"));