| Index: chrome/test/webdriver/test/run_chromedriver_tests.py
|
| diff --git a/chrome/test/webdriver/test/run_chromedriver_tests.py b/chrome/test/webdriver/test/run_chromedriver_tests.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..27a89d76e0e220e42f00223fee6290df683e05a1
|
| --- /dev/null
|
| +++ b/chrome/test/webdriver/test/run_chromedriver_tests.py
|
| @@ -0,0 +1,17 @@
|
| +#!/usr/bin/python
|
| +# Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +"""Runs all of the ChromeDriver tests.
|
| +
|
| +For ChromeDriver documentation, refer to:
|
| + http://dev.chromium.org/developers/testing/webdriver-for-chrome
|
| +"""
|
| +
|
| +import unittest
|
| +from gtest_text_test_runner import GTestTextTestRunner
|
| +
|
| +if __name__ == '__main__':
|
| + unittest.main(module='chromedriver_tests',
|
| + testRunner=GTestTextTestRunner(verbosity=1))
|
|
|