From fc28c086423109b6d16ac47200a0cd7014b26922 Mon Sep 17 00:00:00 2001 From: Michael Hanselmann <hansmi@google.com> Date: Mon, 18 Aug 2008 10:51:42 +0000 Subject: [PATCH] QA: Try to run more scripts with --version This patch also sorts the list. Reviewed-by: schreiberal --- qa/qa_env.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/qa/qa_env.py b/qa/qa_env.py index b2dff2e09..3b1a76129 100644 --- a/qa/qa_env.py +++ b/qa/qa_env.py @@ -43,12 +43,16 @@ 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-rapi', '--version'], ['ganeti-watcher', '--version'] ) cmd = ' && '.join([utils.ShellQuoteArgs(i) for i in cmds]) -- GitLab