diff options
author | Juan Quintela | 2022-09-02 18:51:19 +0200 |
---|---|---|
committer | Thomas Huth | 2022-10-11 12:36:15 +0200 |
commit | f15cfe419eebc49d28949f4fa75259e530136eab (patch) | |
tree | 457273755026aca7979816f1e3e3d985dcce0c56 /tests/qtest/fuzz-xlnx-dp-test.c | |
parent | Merge tag 'pull-hex-20221003' of https://github.com/quic/qemu into staging (diff) | |
download | qemu-f15cfe419eebc49d28949f4fa75259e530136eab.tar.gz qemu-f15cfe419eebc49d28949f4fa75259e530136eab.tar.xz qemu-f15cfe419eebc49d28949f4fa75259e530136eab.zip |
qtest: "-display none" is set in qtest_init()
So we don't need to set anywhere else.
Signed-off-by: Juan Quintela <quintela@redhat.com>
[thuth: Drop changes in tests/qtest/fuzz/ since the fuzzers still need this]
Message-Id: <20220902165126.1482-2-quintela@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/qtest/fuzz-xlnx-dp-test.c')
-rw-r--r-- | tests/qtest/fuzz-xlnx-dp-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qtest/fuzz-xlnx-dp-test.c b/tests/qtest/fuzz-xlnx-dp-test.c index 51e9a37300..e8c483965f 100644 --- a/tests/qtest/fuzz-xlnx-dp-test.c +++ b/tests/qtest/fuzz-xlnx-dp-test.c @@ -14,7 +14,7 @@ */ static void test_fuzz_xlnx_dp_0x3ac(void) { - QTestState *s = qtest_init("-M xlnx-zcu102 -display none "); + QTestState *s = qtest_init("-M xlnx-zcu102 "); qtest_readl(s, 0xfd4a03ac); qtest_quit(s); } |