diff options
author | mtklein <mtklein@chromium.org> | 2016-03-16 08:37:19 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-03-16 08:37:19 -0700 |
commit | 935f1b1a20f673b81e78bec913cd702ffc793c99 (patch) | |
tree | 00ca0df10256e89d9866388c69a8bd472f4d735e | |
parent | c161310ffdbbcb3b023da2e375faefd211fa52e8 (diff) |
Split uninteresting hash lines correctly on Windows.
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1806903002
Review URL: https://codereview.chromium.org/1806903002
-rw-r--r-- | dm/DM.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -262,6 +262,12 @@ static void gather_gold() { /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/ +#if defined(SK_BUILD_FOR_WIN32) + static const char* kNewline = "\r\n"; +#else + static const char* kNewline = "\n"; +#endif + static SkTHashSet<SkString> gUninterestingHashes; static void gather_uninteresting_hashes() { @@ -273,7 +279,7 @@ static void gather_uninteresting_hashes() { return; } SkTArray<SkString> hashes; - SkStrSplit((const char*)data->data(), "\n", &hashes); + SkStrSplit((const char*)data->data(), kNewline, &hashes); for (const SkString& hash : hashes) { gUninterestingHashes.add(hash); } |