X-Git-Url: https://code.grnet.gr/git/ganeti-local/blobdiff_plain/cec9845cb50cd5a76b3f8421895ee52684ae4d5c..30dabd03436be299b1daa02f35685d440a69c7ab:/qa/qa_env.py diff --git a/qa/qa_env.py b/qa/qa_env.py index 266fb11..3369acd 100644 --- a/qa/qa_env.py +++ b/qa/qa_env.py @@ -1,3 +1,6 @@ +# +# + # Copyright (C) 2007 Google Inc. # # This program is free software; you can redistribute it and/or modify @@ -23,6 +26,7 @@ from ganeti import utils import qa_config +import qa_utils from qa_utils import AssertEqual, StartSSH @@ -39,13 +43,19 @@ def TestGanetiCommands(): """Test availibility of Ganeti commands. """ - cmds = ( ['gnt-cluster', '--version'], - ['gnt-os', '--version'], - ['gnt-node', '--version'], + cmds = ( ['gnt-backup', '--version'], + ['gnt-cluster', '--version'], + ['gnt-debug', '--version'], ['gnt-instance', '--version'], - ['gnt-backup', '--version'], + ['gnt-job', '--version'], + ['gnt-node', '--version'], + ['gnt-os', '--version'], + ['ganeti-masterd', '--version'], ['ganeti-noded', '--version'], - ['ganeti-watcher', '--version'] ) + ['ganeti-rapi', '--version'], + ['ganeti-watcher', '--version'], + ['ganeti-confd', '--version'], + ) cmd = ' && '.join([utils.ShellQuoteArgs(i) for i in cmds])