Commit 4e5999de authored by dcastagna's avatar dcastagna Committed by Commit bot

Add gpu_perftests to perfbots.

BUG=423481

Review URL: https://codereview.chromium.org/962863002

Cr-Commit-Position: refs/heads/master@{#319122}
parent 95221ffe
......@@ -538,6 +538,7 @@
'../chrome/chrome.gyp:performance_browser_tests',
'../chrome/chrome.gyp:sync_performance_tests',
'../content/content_shell_and_tests.gyp:content_shell',
'../gpu/gpu.gyp:gpu_perftests',
'../media/media.gyp:media_perftests',
'../tools/perf/clear_system_cache/clear_system_cache.gyp:*',
'../tools/telemetry/telemetry.gyp:*',
......
......@@ -9,7 +9,10 @@
int main(int argc, char** argv) {
base::TestSuite test_suite(argc, argv);
// Always run the perf tests serially, to avoid distorting
// perf measurements with randomness resulting from running
// in parallel.
const auto& run_test_suite =
base::Bind(&base::TestSuite::Run, base::Unretained(&test_suite));
return base::LaunchUnitTests(argc, argv, run_test_suite);
return base::LaunchUnitTestsSerially(argc, argv, run_test_suite);
}
......@@ -12,6 +12,11 @@
{
"name": "host_info",
"script": "host_info.py"
},
{
"name": "gpu_perftests",
"script": "gtest_perf_test.py",
"args": ["gpu_perftests"]
}
]
},
......@@ -38,5 +43,59 @@
"script": "host_info.py"
}
]
},
"Linux Perf (1)": {
"scripts": [
{
"name": "gpu_perftests",
"script": "gtest_perf_test.py",
"args": ["gpu_perftests", "--test-launcher-print-test-stdio=always"]
}
]
},
"Win 7 ATI GPU Perf": {
"scripts": [
{
"name": "gpu_perftests",
"script": "gtest_perf_test.py",
"args": ["gpu_perftests", "--test-launcher-print-test-stdio=always"]
}
]
},
"Win 7 Intel GPU Perf": {
"scripts": [
{
"name": "gpu_perftests",
"script": "gtest_perf_test.py",
"args": ["gpu_perftests", "--test-launcher-print-test-stdio=always"]
}
]
},
"Win 7 Nvidia GPU Perf": {
"scripts": [
{
"name": "gpu_perftests",
"script": "gtest_perf_test.py",
"args": ["gpu_perftests", "--test-launcher-print-test-stdio=always"]
}
]
},
"Mac 10.8 Perf (1)": {
"scripts": [
{
"name": "gpu_perftests",
"script": "gtest_perf_test.py",
"args": ["gpu_perftests", "--test-launcher-print-test-stdio=always"]
}
]
},
"Mac 10.9 Perf (1)": {
"scripts": [
{
"name": "gpu_perftests",
"script": "gtest_perf_test.py",
"args": ["gpu_perftests", "--test-launcher-print-test-stdio=always"]
}
]
}
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment