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

Side by Side Diff: chrome/test/browser/browser_tests_launcher.cc

Issue 99097: Adding browser tests, for which the DLL is unloaded after each test (take 2) (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 7 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 | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « chrome/test/browser/browser_tests_dll.vcproj ('k') | chrome/test/browser/browser_tests_launcher.vcproj » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698