Commit ced09f9b authored by Paolo Bonzini's avatar Paolo Bonzini Committed by Thomas Huth
Browse files

qtest: log QEMU command line



Record the command line that was used to start QEMU.  This can be
useful for debugging.

Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
Reviewed-by: default avatarLaurent Vivier <lvivier@redhat.com>
[thuth: removed trailing \n from the message string]
Signed-off-by: default avatarThomas Huth <thuth@redhat.com>
parent 3b6b0a8a
Loading
Loading
Loading
Loading
+15 −11
Original line number Diff line number Diff line
@@ -215,9 +215,6 @@ QTestState *qtest_init_without_qmp_handshake(bool use_oob,

    qtest_add_abrt_handler(kill_qemu_hook_func, s);

    s->qemu_pid = fork();
    if (s->qemu_pid == 0) {
        setenv("QEMU_AUDIO_DRV", "none", true);
    command = g_strdup_printf("exec %s "
                              "-qtest unix:%s,nowait "
                              "-qtest-log %s "
@@ -229,10 +226,17 @@ QTestState *qtest_init_without_qmp_handshake(bool use_oob,
                              getenv("QTEST_LOG") ? "/dev/fd/2" : "/dev/null",
                              qmp_socket_path, use_oob ? ",x-oob=on" : "",
                              extra_args ?: "");

    g_test_message("starting QEMU: %s", command);

    s->qemu_pid = fork();
    if (s->qemu_pid == 0) {
        setenv("QEMU_AUDIO_DRV", "none", true);
        execlp("/bin/sh", "sh", "-c", command, NULL);
        exit(1);
    }

    g_free(command);
    s->fd = socket_accept(sock);
    if (s->fd >= 0) {
        s->qmp_fd = socket_accept(qmpsock);