Commit 2df35773 authored by Eduardo Habkost's avatar Eduardo Habkost
Browse files

tests: Remove unneeded "-vnc none" option



Some tests use the "-vnc none" option without any clear reason,
making those tests break when --disable-vnc is specified on
./configure.  Remove the unnecessary option.

Reviewed-by: default avatarJohn Snow <jsnow@redhat.com>
Tested-by: default avatarCorey Minyard <cminyard@mvista.com>
Reviewed-by: default avatarMichael S. Tsirkin <mst@redhat.com>
Acked-by: default avatarKevin Wolf <kwolf@redhat.com>
Signed-off-by: default avatarEduardo Habkost <ehabkost@redhat.com>
parent 6bc56d31
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -620,7 +620,6 @@ static void test_retry_flush(const char *machine)
    prepare_blkdebug_script(debug_path, "flush_to_disk");

    ide_test_start(
        "-vnc none "
        "-drive file=blkdebug:%s:%s,if=ide,cache=writeback,format=raw,"
        "rerror=stop,werror=stop",
        debug_path, tmp_path);
+1 −1
Original line number Diff line number Diff line
@@ -415,7 +415,7 @@ int main(int argc, char **argv)
    /* Run the tests */
    g_test_init(&argc, &argv, NULL);

    cmdline = g_strdup_printf("-vnc none"
    cmdline = g_strdup_printf(
          " -chardev socket,id=ipmi0,host=localhost,port=%d,reconnect=10"
          " -device ipmi-bmc-extern,chardev=ipmi0,id=bmc0"
          " -device isa-ipmi-bt,bmc=bmc0", emu_port);
+1 −1
Original line number Diff line number Diff line
@@ -276,7 +276,7 @@ int main(int argc, char **argv)
    /* Run the tests */
    g_test_init(&argc, &argv, NULL);

    cmdline = g_strdup_printf("-vnc none -device ipmi-bmc-sim,id=bmc0"
    cmdline = g_strdup_printf("-device ipmi-bmc-sim,id=bmc0"
                              " -device isa-ipmi-kcs,bmc=bmc0");
    qtest_start(cmdline);
    qtest_irq_intercept_in(global_qtest, "ioapic");