[email protected] | e73e8922 | 2012-07-13 18:55:22 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
[email protected] | 3c53cfa | 2009-05-18 21:23:49 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
3 | // found in the LICENSE file. | ||||
4 | |||||
[email protected] | e73e8922 | 2012-07-13 18:55:22 | [diff] [blame] | 5 | #include "base/test/main_hook.h" |
[email protected] | 402bcb1 | 2011-06-20 18:55:53 | [diff] [blame] | 6 | #include "base/test/test_suite.h" |
[email protected] | 3c53cfa | 2009-05-18 21:23:49 | [diff] [blame] | 7 | |
8 | int main(int argc, char** argv) { | ||||
[email protected] | e73e8922 | 2012-07-13 18:55:22 | [diff] [blame] | 9 | MainHook hook(main, argc, argv); |
[email protected] | 402bcb1 | 2011-06-20 18:55:53 | [diff] [blame] | 10 | return base::TestSuite(argc, argv).Run(); |
[email protected] | 3c53cfa | 2009-05-18 21:23:49 | [diff] [blame] | 11 | } |