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. |