Commit bcc388df authored by Alex Bennée's avatar Alex Bennée
Browse files

tests/vm: make --interactive (and therefore DEBUG=1) unconditional



While the concept of only dropping to ssh if a test fails is nice it
is more useful for this to be unconditional. You usually just want to
get the build up and running and then noodle around debugging or
attempting to replicate.

Cc: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: default avatarAlex Bennée <alex.bennee@linaro.org>
Reviewed-by: default avatarThomas Huth <thuth@redhat.com>
parent 39e28210
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -403,7 +403,7 @@ def main(vmcls):
    exitcode = 0
    if vm.ssh(*cmd) != 0:
        exitcode = 3
    if exitcode != 0 and args.interactive:
    if args.interactive:
        vm.ssh()

    if not args.snapshot: