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

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: Pass rate 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/vm_au_worker.py » ('j') | no next file with comments »
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 8b1df085c5bb85753a563e9dfdfbb3fa6dd174db..03c0ea910dca2a784a78cc9094679d8a0781d989 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/vm_au_worker.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698