base/test/launcher: Don't trim leading whitespace from test output
commit0fbbee21cbea17a544c30b6d5e769f9e4ba8ad44
authornick <nick@chromium.org>
Thu, 16 Apr 2015 20:58:35 +0000 (16 13:58 -0700)
committerCommit bot <commit-bot@chromium.org>
Thu, 16 Apr 2015 20:58:46 +0000 (16 20:58 +0000)
treeb4397794a61e77e30bb5e314c7ff8320203553d5
parentd362de5b7d8aeb07523546f740244a24df85ab1d
base/test/launcher: Don't trim leading whitespace from test output
base/strings: Remove an unnecessary UTF8 check from one of the trim functions

gtest's message often use leading whitespace in a way that's visually meaningful. Some examples:

======== EXPECT_EQ(this, this+1);
my_test.cc(2048): error: Value of: this+1
  Actual: 24F8B8D4
Expected: this
Which is: 24F8B8A0
========
======== EXPECT_EQ("AA\nBB\nDD", std::string("AA\nXX\nDD"));
my_test.cc(2049): error: Value of: std::string("AA\nXX\nDD")
  Actual: "AA\nXX\nDD"
Expected: "AA\nBB\nDD"
With diff:
@@ -1,3 +1,3 @@
 AA
-BB
+XX
 DD
========

Today leading whitespaces are stripped out by the test launcher, leading to less readable test stdout on the bots (and headaches, especially, if the 'AA' value in the example above had leading whitespace itself -- which is how I noticed this).

The current whitespace trimming seems to be an accidental effect of [https://codereview.chromium.org/324893004], so it should be safe to change back.

BUG=475265

Review URL: https://codereview.chromium.org/1081493002

Cr-Commit-Position: refs/heads/master@{#325512}
base/strings/string_split.cc
base/test/launcher/test_launcher.cc