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

Side by Side Diff: dm/DM.cpp

Issue 1274693002: Intentionally crash DM to make sure all bots are up-to-date. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2013 Google Inc. 2 * Copyright 2013 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "CrashHandler.h" 8 #include "CrashHandler.h"
9 #include "DMJsonWriter.h" 9 #include "DMJsonWriter.h"
10 #include "DMSrcSink.h" 10 #include "DMSrcSink.h"
(...skipping 828 matching lines...) Expand 10 before | Expand all | Expand 10 after
839 } 839 }
840 if (gPending > 0) { 840 if (gPending > 0) {
841 SkDebugf("Hrm, we didn't seem to run everything we intended to! Please file a bug.\n"); 841 SkDebugf("Hrm, we didn't seem to run everything we intended to! Please file a bug.\n");
842 return 1; 842 return 1;
843 } 843 }
844 return 0; 844 return 0;
845 } 845 }
846 846
847 #if !defined(SK_BUILD_FOR_IOS) 847 #if !defined(SK_BUILD_FOR_IOS)
848 int main(int argc, char** argv) { 848 int main(int argc, char** argv) {
849 SkASSERT(false);
849 SkCommandLineFlags::Parse(argc, argv); 850 SkCommandLineFlags::Parse(argc, argv);
850 return dm_main(); 851 return dm_main();
851 } 852 }
852 #endif 853 #endif
OLDNEW
« 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