From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: qemu-devel@nongnu.org
Cc: "Fam Zheng" <fam@euphon.net>,
"Laurent Vivier" <lvivier@redhat.com>,
"Thomas Huth" <thuth@redhat.com>,
qemu-block@nongnu.org, "Li Qiang" <liq3ea@gmail.com>,
"Hannes Reinecke" <hare@suse.com>,
"Alexander Bulekov" <alxndr@bu.edu>,
"Paolo Bonzini" <pbonzini@redhat.com>,
"Philippe Mathieu-Daudé" <philmd@redhat.com>,
"Stefan Berger" <stefanb@linux.ibm.com>
Subject: [PATCH 1/4] tests/qtest: Remove TPM tests
Date: Fri, 15 Jan 2021 16:09:33 +0100 [thread overview]
Message-ID: <20210115150936.3333282-2-philmd@redhat.com> (raw)
In-Reply-To: <20210115150936.3333282-1-philmd@redhat.com>
The TPM tests are failing, and no further tests are run,
making the rest of the testsuite pointless:
$ make check-qtest
=================================================================
==3330026==ERROR: LeakSanitizer: detected memory leaks
Indirect leak of 444960 byte(s) in 108 object(s) allocated from:
#0 0x55a2df5adb87 in calloc (tests/qtest/tpm-crb-swtpm-test+0x266b87)
#1 0x7f507bbff9b0 in g_malloc0 (/lib64/libglib-2.0.so.0+0x589b0)
#2 0x55a2df898766 in parse_object qobject/json-parser.c:318:12
#3 0x55a2df897d86 in parse_value qobject/json-parser.c:546:16
#4 0x55a2df8979be in json_parser_parse qobject/json-parser.c:580:14
#5 0x55a2df81ccc1 in json_message_process_token qobject/json-streamer.c:92:12
#6 0x55a2df85f773 in json_lexer_feed_char qobject/json-lexer.c:313:13
#7 0x55a2df85eb04 in json_lexer_feed qobject/json-lexer.c:350:9
#8 0x55a2df81d7ed in json_message_parser_feed qobject/json-streamer.c:121:5
#9 0x55a2df5f15f9 in qmp_fd_receive tests/qtest/libqtest.c:614:9
#10 0x55a2df5f1dda in qtest_qmp_receive_dict tests/qtest/libqtest.c:636:12
#11 0x55a2df5ef444 in qtest_qmp_receive tests/qtest/libqtest.c:624:27
#12 0x55a2df5f3a2d in qtest_vqmp tests/qtest/libqtest.c:715:12
#13 0x55a2df5efa62 in qtest_qmp tests/qtest/libqtest.c:756:16
#14 0x55a2df5eb480 in tpm_util_wait_for_migration_complete tests/qtest/tpm-util.c:245:15
#15 0x55a2df5e4167 in tpm_test_swtpm_migration_test tests/qtest/tpm-tests.c:117:5
#16 0x55a2df5e340c in tpm_crb_swtpm_migration_test tests/qtest/tpm-crb-swtpm-test.c:44:5
#17 0x7f507bc2229d (/lib64/libglib-2.0.so.0+0x7b29d)
Indirect leak of 3456 byte(s) in 108 object(s) allocated from:
#0 0x55a2df5adb87 in calloc (tests/qtest/tpm-crb-swtpm-test+0x266b87)
#1 0x7f507bbff9b0 in g_malloc0 (/lib64/libglib-2.0.so.0+0x589b0)
#2 0x55a2df7886af in qdict_put_obj qobject/qdict.c:126:17
#3 0x55a2df89d706 in parse_pair qobject/json-parser.c:300:5
#4 0x55a2df898889 in parse_object qobject/json-parser.c:327:13
#5 0x55a2df897d86 in parse_value qobject/json-parser.c:546:16
#6 0x55a2df8979be in json_parser_parse qobject/json-parser.c:580:14
#7 0x55a2df81ccc1 in json_message_process_token qobject/json-streamer.c:92:12
#8 0x55a2df85f773 in json_lexer_feed_char qobject/json-lexer.c:313:13
#9 0x55a2df85eb04 in json_lexer_feed qobject/json-lexer.c:350:9
#10 0x55a2df81d7ed in json_message_parser_feed qobject/json-streamer.c:121:5
#11 0x55a2df5f15f9 in qmp_fd_receive tests/qtest/libqtest.c:614:9
#12 0x55a2df5f1dda in qtest_qmp_receive_dict tests/qtest/libqtest.c:636:12
#13 0x55a2df5ef444 in qtest_qmp_receive tests/qtest/libqtest.c:624:27
#14 0x55a2df5f3a2d in qtest_vqmp tests/qtest/libqtest.c:715:12
#15 0x55a2df5efa62 in qtest_qmp tests/qtest/libqtest.c:756:16
#16 0x55a2df5eb480 in tpm_util_wait_for_migration_complete tests/qtest/tpm-util.c:245:15
#17 0x55a2df5e4167 in tpm_test_swtpm_migration_test tests/qtest/tpm-tests.c:117:5
#18 0x55a2df5e340c in tpm_crb_swtpm_migration_test tests/qtest/tpm-crb-swtpm-test.c:44:5
#19 0x7f507bc2229d (/lib64/libglib-2.0.so.0+0x7b29d)
Indirect leak of 756 byte(s) in 108 object(s) allocated from:
#0 0x55a2df5ad9cf in malloc (tests/qtest/tpm-crb-swtpm-test+0x2669cf)
#1 0x7f507bbff958 in g_malloc (/lib64/libglib-2.0.so.0+0x58958)
SUMMARY: AddressSanitizer: 449172 byte(s) leaked in 324 allocation(s).
make: *** [Makefile.mtest:1025: run-test-126] Error 1
Remove these tests to be able to run the rest.
Cc: Stefan Berger <stefanb@linux.ibm.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
tests/qtest/meson.build | 4 ----
1 file changed, 4 deletions(-)
diff --git a/tests/qtest/meson.build b/tests/qtest/meson.build
index 16d04625b8b..bcbb04d2bb4 100644
--- a/tests/qtest/meson.build
+++ b/tests/qtest/meson.build
@@ -41,10 +41,6 @@
(config_all_devices.has_key('CONFIG_USB_UHCI') and \
config_all_devices.has_key('CONFIG_USB_EHCI') ? ['usb-hcd-ehci-test'] : []) + \
(config_all_devices.has_key('CONFIG_USB_XHCI_NEC') ? ['usb-hcd-xhci-test'] : []) + \
- (config_all_devices.has_key('CONFIG_TPM_CRB') ? ['tpm-crb-test'] : []) + \
- (config_all_devices.has_key('CONFIG_TPM_CRB') ? ['tpm-crb-swtpm-test'] : []) + \
- (config_all_devices.has_key('CONFIG_TPM_TIS_ISA') ? ['tpm-tis-test'] : []) + \
- (config_all_devices.has_key('CONFIG_TPM_TIS_ISA') ? ['tpm-tis-swtpm-test'] : []) + \
(config_all_devices.has_key('CONFIG_RTL8139_PCI') ? ['rtl8139-test'] : []) + \
qtests_pci + \
['fdc-test',
--
2.26.2
next prev parent reply other threads:[~2021-01-15 15:15 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-01-15 15:09 [PATCH 0/4] tests/qtest: Fixes fuzz-tests Philippe Mathieu-Daudé
2021-01-15 15:09 ` Philippe Mathieu-Daudé [this message]
2021-01-15 15:52 ` [PATCH 1/4] tests/qtest: Remove TPM tests Philippe Mathieu-Daudé
2021-01-15 15:53 ` Stefan Berger
2021-01-15 16:06 ` Philippe Mathieu-Daudé
2021-01-15 16:07 ` Philippe Mathieu-Daudé
2021-01-15 18:40 ` Stefan Berger
2021-01-15 19:56 ` Stefan Berger
2021-01-16 14:56 ` Philippe Mathieu-Daudé
2021-01-17 18:47 ` Paolo Bonzini
2021-01-17 18:56 ` Philippe Mathieu-Daudé
2021-01-15 15:09 ` [PATCH 2/4] tests/qtest: Make fuzz-test generic to all targets Philippe Mathieu-Daudé
2021-01-15 22:21 ` Thomas Huth
2021-01-26 11:07 ` Philippe Mathieu-Daudé
2021-01-15 15:09 ` [PATCH 3/4] tests/qtest: Only run fuzz-megasas-test if megasas device is available Philippe Mathieu-Daudé
2021-01-15 22:39 ` Alexander Bulekov
2021-01-26 11:08 ` Philippe Mathieu-Daudé
2021-01-15 15:09 ` [PATCH 4/4] tests/qtest: Only run fuzz-virtio-scsi when virtio-scsi " Philippe Mathieu-Daudé
2021-01-17 11:01 ` Michael S. Tsirkin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210115150936.3333282-2-philmd@redhat.com \
--to=philmd@redhat.com \
--cc=alxndr@bu.edu \
--cc=fam@euphon.net \
--cc=hare@suse.com \
--cc=liq3ea@gmail.com \
--cc=lvivier@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=stefanb@linux.ibm.com \
--cc=thuth@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).