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

Side by Side Diff: chrome/test/selenium/selenium_test.cc

Issue 3145001: FBTF: Clean up task.h in x11_util.h and header usage in some delegates. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: more Created 10 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
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 // This is a gTest-based test that runs the Selenium Core testsuite in Chrome 5 // This is a gTest-based test that runs the Selenium Core testsuite in Chrome
6 // using the UITest automation. The number of total and failed tests are 6 // using the UITest automation. The number of total and failed tests are
7 // written to stdout. 7 // written to stdout.
8 // 8 //
9 // TODO(darin): output the names of the failed tests so we can easily track 9 // TODO(darin): output the names of the failed tests so we can easily track
10 // deviations from the expected output. 10 // deviations from the expected output.
11 11
12 #include <list> 12 #include <list>
13 #include <set> 13 #include <set>
14 14
15 #include "base/file_path.h" 15 #include "base/file_path.h"
16 #include "base/file_util.h" 16 #include "base/file_util.h"
17 #include "base/path_service.h" 17 #include "base/path_service.h"
18 #include "base/string_util.h" 18 #include "base/string_util.h"
19 #include "base/utf_string_conversions.h"
19 #include "chrome/common/chrome_paths.h" 20 #include "chrome/common/chrome_paths.h"
20 #include "chrome/test/automation/tab_proxy.h" 21 #include "chrome/test/automation/tab_proxy.h"
21 #include "chrome/test/automation/window_proxy.h" 22 #include "chrome/test/automation/window_proxy.h"
22 #include "chrome/test/ui/ui_test.h" 23 #include "chrome/test/ui/ui_test.h"
23 #include "net/base/net_util.h" 24 #include "net/base/net_util.h"
24 25
25 #ifdef SIMULATE_RUN 26 #ifdef SIMULATE_RUN
26 #include "base/rand_util.h" 27 #include "base/rand_util.h"
27 #endif 28 #endif
28 29
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 } 167 }
167 168
168 if (!new_passes_list.empty()) { 169 if (!new_passes_list.empty()) {
169 printf("new tests passing:\n"); 170 printf("new tests passing:\n");
170 ResultsList::const_iterator it = new_passes_list.begin(); 171 ResultsList::const_iterator it = new_passes_list.begin();
171 for (; it != new_passes_list.end(); ++it) 172 for (; it != new_passes_list.end(); ++it)
172 printf(" %s\n", it->c_str()); 173 printf(" %s\n", it->c_str());
173 printf("\n"); 174 printf("\n");
174 } 175 }
175 } 176 }
OLDNEW
« no previous file with comments | « chrome/test/page_cycler/page_cycler_test.cc ('k') | chrome/test/tab_switching/tab_switching_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698