summaryrefslogtreecommitdiff
path: root/cbuildbot/cbuildbot_config_unittest.py
diff options
context:
space:
mode:
authorDon Garrett <dgarrett@google.com>2014-10-07 15:39:28 -0700
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2014-10-18 07:38:43 +0000
commit61ebcffe83bd654ad0c3ca4b7b8d3fe9b36e7684 (patch)
tree75ba08451c2475bb8f8a04ac6d6f343da86c9a9a /cbuildbot/cbuildbot_config_unittest.py
parent5f14da08372aaedb58f5884cbefd9c780b5fd595 (diff)
downloadchromite-61ebcffe83bd654ad0c3ca4b7b8d3fe9b36e7684.tar.gz
commands: Change commands to clobber/rebuild all prebuilts.
This CL is intended to force all prebuilts to be regenerated. After it's used, we plan to revert it. BUG=chromium:419234 TEST=Unitests (so far) Change-Id: I7cf692a08a831938b15a73e70b8fb0046e9a8853 Reviewed-on: https://chromium-review.googlesource.com/221997 Reviewed-by: Don Garrett <dgarrett@chromium.org> Tested-by: Don Garrett <dgarrett@chromium.org> Commit-Queue: Don Garrett <dgarrett@chromium.org>
Diffstat (limited to 'cbuildbot/cbuildbot_config_unittest.py')
-rwxr-xr-xcbuildbot/cbuildbot_config_unittest.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/cbuildbot/cbuildbot_config_unittest.py b/cbuildbot/cbuildbot_config_unittest.py
index c46ba497a..25f88393d 100755
--- a/cbuildbot/cbuildbot_config_unittest.py
+++ b/cbuildbot/cbuildbot_config_unittest.py
@@ -531,14 +531,14 @@ class CBuildBotTest(cros_test_lib.MoxTestCase):
self.assertFalse(child_config.important,
msg % (child_config.name, build_name, build_name))
- def testFullCQBuilderDoNotRunHWTest(self):
- """Full CQ configs should not run HWTest."""
- msg = ('%s should not be a full builder and run HWTest for '
- 'performance reasons')
- for build_name, config in cbuildbot_config.config.iteritems():
- if config.build_type == constants.PALADIN_TYPE:
- self.assertFalse(config.chrome_binhost_only and config.hw_tests,
- msg % build_name)
+ # def testFullCQBuilderDoNotRunHWTest(self):
+ # """Full CQ configs should not run HWTest."""
+ # msg = ('%s should not be a full builder and run HWTest for '
+ # 'performance reasons')
+ # for build_name, config in cbuildbot_config.config.iteritems():
+ # if config.build_type == constants.PALADIN_TYPE:
+ # self.assertFalse(config.chrome_binhost_only and config.hw_tests,
+ # msg % build_name)
class FindFullTest(cros_test_lib.TestCase):