summaryrefslogtreecommitdiffstats
path: root/build/util/lib
Commit message (Collapse)AuthorAgeFilesLines
* Copy perf_tests_helper.py into build/util/librschoen@google.com2013-09-142-0/+171
| | | | | | | | | | Sorry for the delay on this one. Based off advice in https://codereview.chromium.org/22754003. Just a simple copy of the file, and removing the (seemingly unnecessary?) import of android_commands. Will remove dependencies on old one as part of above mentioned patch. Review URL: https://chromiumcodereview.appspot.com/23578019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@223190 0039d316-1c4b-4281-b951-d872f2087c98
* Android: support glob-style gtest filters with content browser testsskyostil@chromium.org2013-06-073-0/+302
This patch makes it possible to use glob-style gtest filters with the content browser tests. An example of such a filter is WebGLConformanceTest.*, which should cause all the WebGL conformance tests to be run. Previously the gtest filter was passed directly to the test executable, causing it to run all matching tests successively in the same process. Normally this would be fine, but with content browsertests we must run each test in a fresh process to avoid issues with double initialization. The fix is to expand the filter to a flat list of tests in the test dispatcher. After this, the tests are sharded and run in exactly the same way as when no gtest filter is provided. BUG=138226 Review URL: https://chromiumcodereview.appspot.com/14882007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@204680 0039d316-1c4b-4281-b951-d872f2087c98