Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(501)

Unified Diff: bin/cbuildbot_config.py

Issue 3591002: Add ability to run smoke_Suite on x86-pre-flight-queue. (Closed) Base URL: http://git.chromium.org/git/crosutils.git
Patch Set: Fix no_graphics Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « bin/cbuildbot.py ('k') | lib/cros_build_lib.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bin/cbuildbot_config.py
diff --git a/bin/cbuildbot_config.py b/bin/cbuildbot_config.py
index 1ba08d51d0271ded83942d60d6e30adca27b5584..dda1ef8a5049f690bd4fa3ce29017913980326ec 100644
--- a/bin/cbuildbot_config.py
+++ b/bin/cbuildbot_config.py
@@ -18,6 +18,7 @@ important -- Master bot uses important bots to determine overall status.
hostname -- Needed for 'important' slaves. The hostname of the bot. Should
match hostname in slaves.cfg in buildbot checkout.
unittests -- Runs unittests for packages.
+smoke_bvt -- Runs the test smoke suite in a qemu-based VM using KVM.
"""
@@ -29,6 +30,7 @@ config['default'] = {
'master' : False,
'important' : False,
'unittests' : False,
+ 'smoke_bvt' : False,
}
config['x86-generic-pre-flight-queue'] = {
'board' : 'x86-generic',
@@ -37,6 +39,7 @@ config['x86-generic-pre-flight-queue'] = {
'important' : False,
'hostname' : 'chromeosbuild2',
'unittests' : True,
+ 'smoke_bvt' : True,
}
config['x86_pineview_bin'] = {
'board' : 'x86-pineview',
@@ -45,6 +48,7 @@ config['x86_pineview_bin'] = {
'important' : False,
'hostname' : 'codf200.jail',
'unittests': True,
+ 'smoke_bvt' : True,
}
config['arm_tegra2_bin'] = {
'board' : 'tegra2',
« no previous file with comments | « bin/cbuildbot.py ('k') | lib/cros_build_lib.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698