Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Unified Diff: util/win/process_info_test.cc

Issue 990553003: Set product_name on many targets to use a crashpad_ prefix (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Use target_name instead of product_name Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « util/util.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: util/win/process_info_test.cc
diff --git a/util/win/process_info_test.cc b/util/win/process_info_test.cc
index 386bd2f59065a7f3ba1ace717b3b23c83c3fda65..52f9fdd9b002ccb06ab952e68805fa64233cfc1a 100644
--- a/util/win/process_info_test.cc
+++ b/util/win/process_info_test.cc
@@ -52,7 +52,7 @@ TEST(ProcessInfo, Self) {
std::vector<std::wstring> modules;
EXPECT_TRUE(process_info.Modules(&modules));
ASSERT_GE(modules.size(), 2u);
- const wchar_t kSelfName[] = L"\\util_test.exe";
+ const wchar_t kSelfName[] = L"\\crashpad_util_test.exe";
ASSERT_GE(modules[0].size(), wcslen(kSelfName));
EXPECT_EQ(kSelfName,
modules[0].substr(modules[0].size() - wcslen(kSelfName)));
@@ -113,7 +113,8 @@ TEST(ProcessInfo, SomeOtherProcess) {
std::vector<std::wstring> modules;
EXPECT_TRUE(process_info.Modules(&modules));
ASSERT_GE(modules.size(), 3u);
- const wchar_t kChildName[] = L"\\util_test_process_info_test_child.exe";
+ const wchar_t kChildName[] =
+ L"\\crashpad_util_test_process_info_test_child.exe";
ASSERT_GE(modules[0].size(), wcslen(kChildName));
EXPECT_EQ(kChildName,
modules[0].substr(modules[0].size() - wcslen(kChildName)));
« no previous file with comments | « util/util.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698