OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2011 Google Inc. | 2 * Copyright 2011 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 "OverwriteLine.h" | 9 #include "OverwriteLine.h" |
10 #include "Resources.h" | 10 #include "Resources.h" |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 SkDebugf( | 222 SkDebugf( |
223 "\nFinished %d tests, %d failures, %d skipped. " | 223 "\nFinished %d tests, %d failures, %d skipped. " |
224 "(%d internal tests)", | 224 "(%d internal tests)", |
225 toRun, status.failCount(), skipCount, status.testCount()); | 225 toRun, status.failCount(), skipCount, status.testCount()); |
226 } | 226 } |
227 | 227 |
228 SkDebugf("\n"); | 228 SkDebugf("\n"); |
229 return (status.failCount() == 0) ? 0 : 1; | 229 return (status.failCount() == 0) ? 0 : 1; |
230 } | 230 } |
231 | 231 |
232 #if !defined(SK_BUILD_FOR_IOS) && !defined(SK_BUILD_FOR_NACL) | 232 #if !defined(SK_BUILD_FOR_IOS) |
233 int main(int argc, char** argv) { | 233 int main(int argc, char** argv) { |
234 SkCommandLineFlags::Parse(argc, argv); | 234 SkCommandLineFlags::Parse(argc, argv); |
235 return test_main(); | 235 return test_main(); |
236 } | 236 } |
237 #endif | 237 #endif |
OLD | NEW |