summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Asleson <tasleson@redhat.com>2016-10-07 15:30:18 -0500
committerTony Asleson <tasleson@redhat.com>2016-10-10 16:31:00 -0500
commit3e45285b403bdcbf744f21eba6d6aa3a70628e71 (patch)
treefc8c1bc8224c26319abca3db7944416c374bca8b
parent0c51f369a49f489d082c5439967eb6ca49e9a7fd (diff)
downloadlvm2-3e45285b403bdcbf744f21eba6d6aa3a70628e71.tar.gz
lvmdbustest.py: Denote failure if set_execution fails
-rwxr-xr-xtest/dbus/lvmdbustest.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/dbus/lvmdbustest.py b/test/dbus/lvmdbustest.py
index ef2c07a22..37ce1d465 100755
--- a/test/dbus/lvmdbustest.py
+++ b/test/dbus/lvmdbustest.py
@@ -1298,6 +1298,7 @@ class TestDbusService(unittest.TestCase):
self.assertTrue(tag in vg_proxy.Vg.Tags, "%s not in %s" %
(tag, str(vg_proxy.Vg.Tags)))
+
class AggregateResults(object):
def __init__(self):
@@ -1307,6 +1308,9 @@ class AggregateResults(object):
if not result.result.wasSuccessful():
self.no_errors = False
+ def register_fail(self):
+ self.no_errors = False
+
def exit_run(self):
if self.no_errors:
sys.exit(0)
@@ -1339,6 +1343,7 @@ if __name__ == '__main__':
g_tmo = 15
r.register_result(unittest.main(exit=False))
else:
+ r.register_fail()
std_err_print("ERROR: Unable to dynamically configure "
"service to use lvm shell!")