Add aliases to maintain compatibility with tests that use the long names. Signed-off-by: Michael Goldish <mgoldish@xxxxxxxxxx> --- client/tests/kvm/kvm_subprocess.py | 25 +++++++++++++++++++++++++ 1 files changed, 25 insertions(+), 0 deletions(-) diff --git a/client/tests/kvm/kvm_subprocess.py b/client/tests/kvm/kvm_subprocess.py index e0723bb..a60eaf6 100755 --- a/client/tests/kvm/kvm_subprocess.py +++ b/client/tests/kvm/kvm_subprocess.py @@ -1323,3 +1323,28 @@ class ShellSession(Expect): if s != 0: raise ShellCmdError(cmd, s, o) return o + + + def get_command_output(self, cmd, timeout=30.0, internal_timeout=None, + print_func=None): + """ + Alias for cmd_output() for backward compatibility. + """ + return self.cmd_output(cmd, timeout, internal_timeout, print_func) + + + def get_command_status_output(self, cmd, timeout=30.0, + internal_timeout=None, print_func=None): + """ + Alias for cmd_status_output() for backward compatibility. + """ + return self.cmd_status_output(cmd, timeout, internal_timeout, + print_func) + + + def get_command_status(self, cmd, timeout=30.0, internal_timeout=None, + print_func=None): + """ + Alias for cmd_status() for backward compatibility. + """ + return self.cmd_status(cmd, timeout, internal_timeout, print_func) -- 1.5.5.6 -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html