From: Lukáš Doktor <[email protected]> Fixes the incorrect function prefix in migrate virtio_console test.
Signed-off-by: Lukáš Doktor <[email protected]> --- client/tests/virt/kvm/tests/virtio_console.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/tests/virt/kvm/tests/virtio_console.py b/client/tests/virt/kvm/tests/virtio_console.py index bd49440..d62244b 100644 --- a/client/tests/virt/kvm/tests/virtio_console.py +++ b/client/tests/virt/kvm/tests/virtio_console.py @@ -846,7 +846,7 @@ def run_virtio_console(test, params, env): tmp = "%d data sent; " % threads[0].idx for thread in threads[1:]: tmp += "%d, " % thread.idx - logging.debug("test_loopback: %s data received and verified", + logging.debug("test_migrate: %s data received and verified", tmp[:-2]) i += 1 time.sleep(2) @@ -877,7 +877,7 @@ def run_virtio_console(test, params, env): tmp = "%d data sent; " % threads[0].idx for thread in threads[1:]: tmp += "%d, " % thread.idx - logging.debug("test_loopback: %s data received and verified", + logging.debug("test_migrate: %s data received and verified", tmp[:-2]) i += 1 time.sleep(2) @@ -917,7 +917,7 @@ def run_virtio_console(test, params, env): for thread in threads[1:]: thread.join() tmp += "%d, " % thread.idx - logging.info("test_loopback: %s data received and verified during %d " + logging.info("test_migrate: %s data received and verified during %d " "migrations", tmp[:-2], no_migrations) # CLEANUP -- 1.7.11.4 _______________________________________________ Autotest-kernel mailing list [email protected] https://www.redhat.com/mailman/listinfo/autotest-kernel
