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

Unified Diff: bin/cbuildbot_config.py

Issue 6135002: Add simple update test to pfq. (Closed) Base URL: http://git.chromium.org/git/crosutils.git@master
Patch Set: Fixes Created 9 years, 11 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
Index: bin/cbuildbot_config.py
diff --git a/bin/cbuildbot_config.py b/bin/cbuildbot_config.py
index 2f7b6361ddc155e74e070f83006946c98da0355e..c13d3626cd0d20ee149c0baec523c041523574a8 100644
--- a/bin/cbuildbot_config.py
+++ b/bin/cbuildbot_config.py
@@ -18,7 +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.
+tests -- Runs the smoke suite and au test harness in a qemu-based VM using KVM.
rev_overlays -- Select what overlays to look at for revving. This can be
'public', 'private' or 'both'.
push_overlays -- Select what overlays to push at. This should be a subset of
@@ -35,7 +35,7 @@ config['default'] = {
'master' : False,
'important' : False,
'unittests' : False,
- 'smoke_bvt' : False,
+ 'tests' : False,
'rev_overlays': 'public',
'push_overlays': None,
}
@@ -46,7 +46,7 @@ config['x86-generic-pre-flight-queue'] = {
'important' : False,
'hostname' : 'chromeosbuild2',
'unittests' : True,
- 'smoke_bvt' : True,
+ 'tests' : True,
'rev_overlays': 'public',
'push_overlays': 'public',
}
@@ -56,7 +56,7 @@ config['x86-mario-pre-flight-queue'] = {
'master' : True,
'important' : False,
'unittests' : True,
- 'smoke_bvt' : True,
+ 'tests' : True,
'rev_overlays': 'both',
'push_overlays': 'private',
}
@@ -66,7 +66,7 @@ config['x86-mario-pre-flight-branch'] = {
'master' : True,
'important' : False,
'unittests' : True,
- 'smoke_bvt' : True,
+ 'tests' : True,
'rev_overlays': 'both',
'push_overlays': 'both',
}
@@ -76,7 +76,7 @@ config['x86_agz_bin'] = {
'master' : False,
'important' : False,
'unittests' : True,
- 'smoke_bvt' : True,
+ 'tests' : True,
'rev_overlays': 'both',
'push_overlays': None,
}
@@ -86,7 +86,7 @@ config['x86_dogfood_bin'] = {
'master' : False,
'important' : False,
'unittests' : True,
- 'smoke_bvt' : True,
+ 'tests' : True,
'rev_overlays': 'both',
'push_overlays': None,
}
« no previous file with comments | « bin/cbuildbot.py ('k') | bin/cros_au_test_harness.py » ('j') | bin/cros_au_test_harness.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698