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

Unified Diff: testing/iossim/iossim.mm

Issue 10832399: Fix compile error in iossim. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 4 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/iossim/iossim.mm
diff --git a/testing/iossim/iossim.mm b/testing/iossim/iossim.mm
index f5b5fd764b75aa7b3ed211dfd5084c948cbf85a6..2cef4f36badf8c500ca3c0c5b9c6c86736832ba7 100644
--- a/testing/iossim/iossim.mm
+++ b/testing/iossim/iossim.mm
@@ -212,7 +212,7 @@ void LogWarning(NSString* format, ...) {
// account for this case, check if the simulated app's stdio file was
// ever created and if it exists dump it to stdout and return success.
NSFileManager* fileManager = [NSFileManager defaultManager];
- if ([fileManager fileExistsAtPath:stdioPath_ isDirectory:NO]) {
+ if ([fileManager fileExistsAtPath:stdioPath_]) {
appRunning_ = NO;
[self tailOutput];
// Note that exiting in this state leaves a process running
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698