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

Unified Diff: au_test_harness/au_test.py

Issue 6852004: Move bvt suite into test harness. (Closed) Base URL: http://git.chromium.org/git/crostestutils.git@master
Patch Set: Fix to parallel job Created 9 years, 8 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 | « no previous file | au_test_harness/parallel_test_job.py » ('j') | au_test_harness/parallel_test_job.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: au_test_harness/au_test.py
diff --git a/au_test_harness/au_test.py b/au_test_harness/au_test.py
index a95fa746d799996cdd863a10669ea9c0b57fc16a..552d267d122d49629faa762b8ac938b42bd4d408 100644
--- a/au_test_harness/au_test.py
+++ b/au_test_harness/au_test.py
@@ -231,8 +231,8 @@ class AUTest(unittest.TestCase):
self.worker.Initialize(9225)
self.AttemptUpdateWithFilter(DelayedFilter(), proxy_port=8083)
- def SimpleTest(self):
- """A simple update that updates once from a base image to a target.
+ def SimpleTestUpdateAndVerify(self):
+ """Test that updates once from a base image to a target.
We explicitly don't use test prefix so that isn't run by default. Can be
run using test_prefix option.
@@ -242,6 +242,16 @@ class AUTest(unittest.TestCase):
self.worker.PerformUpdate(self.target_image_path, self.base_image_path)
self.worker.VerifyImage(self)
+ def SimpleTestVerify(self):
+ """Test that only verifies the target image.
+
+ We explicitly don't use test prefix so that isn't run by default. Can be
+ run using test_prefix option.
+ """
+ self.worker.Initialize(9227)
+ self.worker.PrepareBase(self.target_image_path)
+ self.worker.VerifyImage(self)
+
# --- DISABLED TESTS ---
# TODO(sosa): Get test to work with verbose.
« no previous file with comments | « no previous file | au_test_harness/parallel_test_job.py » ('j') | au_test_harness/parallel_test_job.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698