summaryrefslogtreecommitdiffstats
path: root/content
diff options
context:
space:
mode:
authordtu@chromium.org <dtu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-21 17:41:18 +0000
committerdtu@chromium.org <dtu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-21 17:41:18 +0000
commitb80f7014b24642769d96365481352d33313446d4 (patch)
tree609222df563511eacf73617b2219c6679ca8b766 /content
parent59f0ff287604f5e45bf2297eb9edbe8978199b98 (diff)
downloadchromium_src-b80f7014b24642769d96365481352d33313446d4.zip
chromium_src-b80f7014b24642769d96365481352d33313446d4.tar.gz
chromium_src-b80f7014b24642769d96365481352d33313446d4.tar.bz2
[telemetry] test_runner and run_benchmarks
- test.Test, which encapsulates a test and page set, and describes how to run it. - test_runner, which runs test.Tests using a command-based CLI. - benchmarks dir, which contains a list of test.Tests. - run_measurement, which just calls test_runner.Main(). BUG=237412 TEST=None. R=kbr@chromium.org, nduca@chromium.org, tonyg@chromium.org Review URL: https://codereview.chromium.org/17438002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@207874 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content')
-rwxr-xr-xcontent/test/gpu/run_gpu_tests3
1 files changed, 1 insertions, 2 deletions
diff --git a/content/test/gpu/run_gpu_tests b/content/test/gpu/run_gpu_tests
index 2ebb6ff..54ccf02 100755
--- a/content/test/gpu/run_gpu_tests
+++ b/content/test/gpu/run_gpu_tests
@@ -40,9 +40,8 @@ if __name__ == '__main__':
'test/gpu/gpu_tests/bootstrap_deps')
import gpu_tests
from telemetry.page import page_test_runner
- test_dir = os.path.join(os.path.dirname(__file__), 'gpu_tests')
import page_sets # pylint: disable=F0401
page_set_filenames = page_sets.GetAllPageSetFilenames()
- sys.exit(page_test_runner.Main(test_dir, '', page_set_filenames))
+ sys.exit(page_test_runner.Main(os.path.dirname(__file__), page_set_filenames))