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

Unified Diff: util/test/executable_path_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 | « tools/tools.gyp ('k') | util/util.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: util/test/executable_path_test.cc
diff --git a/util/test/executable_path_test.cc b/util/test/executable_path_test.cc
index 54374e34c97425c5d2a6ee64db99f51db4bb33b9..5c18c45bdd684d9b649f37ccc19b09b9cf6a13f8 100644
--- a/util/test/executable_path_test.cc
+++ b/util/test/executable_path_test.cc
@@ -26,9 +26,10 @@ TEST(ExecutablePath, ExecutablePath) {
base::FilePath executable_path = ExecutablePath();
base::FilePath executable_name = executable_path.BaseName();
#if defined(OS_WIN)
- EXPECT_EQ(FILE_PATH_LITERAL("util_test.exe"), executable_name.value());
+ EXPECT_EQ(FILE_PATH_LITERAL("crashpad_util_test.exe"),
+ executable_name.value());
#else
- EXPECT_EQ("util_test", executable_name.value());
+ EXPECT_EQ("crashpad_util_test", executable_name.value());
#endif // OS_WIN
}
« no previous file with comments | « tools/tools.gyp ('k') | util/util.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698