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

Side by Side Diff: chrome/test/ui/ui_test.h

Issue 195106: Implement per-test timeout for UI tests. (Closed)
Patch Set: sync with trunk Created 11 years, 2 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
« no previous file with comments | « chrome/test/automation/automation_proxy.cc ('k') | chrome/test/ui/ui_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #ifndef CHROME_TEST_UI_UI_TEST_H_ 5 #ifndef CHROME_TEST_UI_UI_TEST_H_
6 #define CHROME_TEST_UI_UI_TEST_H_ 6 #define CHROME_TEST_UI_UI_TEST_H_
7 7
8 // This file provides a common base for running UI unit tests, which operate 8 // This file provides a common base for running UI unit tests, which operate
9 // the entire browser application in a separate process for holistic 9 // the entire browser application in a separate process for holistic
10 // functional testing. 10 // functional testing.
(...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after
549 549
550 scoped_ptr<AutomationProxy> server_; 550 scoped_ptr<AutomationProxy> server_;
551 551
552 MessageLoop message_loop_; // Enables PostTask to main thread. 552 MessageLoop message_loop_; // Enables PostTask to main thread.
553 553
554 int command_execution_timeout_ms_; 554 int command_execution_timeout_ms_;
555 int action_timeout_ms_; 555 int action_timeout_ms_;
556 int action_max_timeout_ms_; 556 int action_max_timeout_ms_;
557 int sleep_timeout_ms_; 557 int sleep_timeout_ms_;
558 int terminate_timeout_ms_; 558 int terminate_timeout_ms_;
559 int per_test_timeout_ms_;
559 560
560 std::wstring ui_test_name_; 561 std::wstring ui_test_name_;
561 }; 562 };
562 563
563 // These exist only to support the gTest assertion macros, and 564 // These exist only to support the gTest assertion macros, and
564 // shouldn't be used in normal program code. 565 // shouldn't be used in normal program code.
565 #ifdef UNIT_TEST 566 #ifdef UNIT_TEST
566 std::ostream& operator<<(std::ostream& out, const std::wstring& wstr); 567 std::ostream& operator<<(std::ostream& out, const std::wstring& wstr);
567 568
568 template<typename T> 569 template<typename T>
569 std::ostream& operator<<(std::ostream& out, const ::scoped_ptr<T>& ptr) { 570 std::ostream& operator<<(std::ostream& out, const ::scoped_ptr<T>& ptr) {
570 return out << ptr.get(); 571 return out << ptr.get();
571 } 572 }
572 #endif // UNIT_TEST 573 #endif // UNIT_TEST
573 574
574 #endif // CHROME_TEST_UI_UI_TEST_H_ 575 #endif // CHROME_TEST_UI_UI_TEST_H_
OLDNEW
« no previous file with comments | « chrome/test/automation/automation_proxy.cc ('k') | chrome/test/ui/ui_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698