| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include <windows.h> | 5 #include <windows.h> |
| 6 | 6 |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 return 0; | 165 return 0; |
| 166 | 166 |
| 167 printf("Failing tests:\n"); | 167 printf("Failing tests:\n"); |
| 168 for (std::vector<std::string>::const_iterator iter = failed_tests.begin(); | 168 for (std::vector<std::string>::const_iterator iter = failed_tests.begin(); |
| 169 iter != failed_tests.end(); ++iter) { | 169 iter != failed_tests.end(); ++iter) { |
| 170 printf("%s\n", iter->c_str()); | 170 printf("%s\n", iter->c_str()); |
| 171 } | 171 } |
| 172 | 172 |
| 173 return 1; | 173 return 1; |
| 174 } | 174 } |
| OLD | NEW |