| 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 "chrome/test/test_launcher/test_runner.h" | 5 #include "chrome/test/test_launcher/test_runner.h" |
| 6 | 6 |
| 7 #include <iostream> | |
| 8 #include <vector> | 7 #include <vector> |
| 9 | 8 |
| 10 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 11 #include "base/file_util.h" | 10 #include "base/file_util.h" |
| 12 #include "base/linked_ptr.h" | 11 #include "base/linked_ptr.h" |
| 13 #include "base/logging.h" | 12 #include "base/logging.h" |
| 14 #include "base/process_util.h" | 13 #include "base/process_util.h" |
| 15 #include "base/scoped_ptr.h" | 14 #include "base/scoped_ptr.h" |
| 16 #include "base/string_util.h" | 15 #include "base/string_util.h" |
| 17 #include "base/test/test_suite.h" | 16 #include "base/test/test_suite.h" |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 printf("Failing tests:\n"); | 261 printf("Failing tests:\n"); |
| 263 for (std::vector<std::string>::const_iterator iter = failed_tests.begin(); | 262 for (std::vector<std::string>::const_iterator iter = failed_tests.begin(); |
| 264 iter != failed_tests.end(); ++iter) { | 263 iter != failed_tests.end(); ++iter) { |
| 265 printf("%s\n", iter->c_str()); | 264 printf("%s\n", iter->c_str()); |
| 266 } | 265 } |
| 267 | 266 |
| 268 return false; | 267 return false; |
| 269 } | 268 } |
| 270 | 269 |
| 271 } // namespace | 270 } // namespace |
| OLD | NEW |