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

Unified Diff: gin/shell/gin_shell_unittest.cc

Issue 1507663003: Isolate gin_unittests and add them to bots (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes Created 5 years 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 | « gin/gin_unittests.isolate ('k') | testing/buildbot/chromium.linux.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gin/shell/gin_shell_unittest.cc
diff --git a/gin/shell/gin_shell_unittest.cc b/gin/shell/gin_shell_unittest.cc
index 2be25192401b20d95a2a35dea139d661a71a976f..ce90535106d1b584e080ae60bf22eda7ae414b0f 100644
--- a/gin/shell/gin_shell_unittest.cc
+++ b/gin/shell/gin_shell_unittest.cc
@@ -12,7 +12,11 @@
base::FilePath GinShellPath() {
base::FilePath dir;
PathService::Get(base::DIR_EXE, &dir);
+#if defined(OS_WIN)
+ return dir.AppendASCII("gin_shell.exe");
+#else
return dir.AppendASCII("gin_shell");
+#endif
}
base::FilePath HelloWorldPath() {
« no previous file with comments | « gin/gin_unittests.isolate ('k') | testing/buildbot/chromium.linux.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698