Re: [Qemu-devel] [PATCH] test-char: fix AddressSanitizer failure

2019-09-09 Thread no-reply
Patchew URL: https://patchew.org/QEMU/20190909130655.24495-1-pbonz...@redhat.com/ Hi, This series failed the docker-quick@centos7 build test. Please find the testing commands and their output below. If you have Docker installed, you can probably reproduce it locally. === TEST SCRIPT BEGIN ==

Re: [Qemu-devel] [PATCH] test-char: fix AddressSanitizer failure

2019-09-09 Thread Daniel P . Berrangé
On Mon, Sep 09, 2019 at 03:06:55PM +0200, Paolo Bonzini wrote: > The CharSocketServerTestConfig and CharSocketClientTestConfig > objects escape after they are passed to g_test_add_data_func, > but they cease existing after the scope that defines them is > closed. Make them static to fix this issue

Re: [Qemu-devel] [PATCH] test-char: fix AddressSanitizer failure

2019-09-09 Thread Philippe Mathieu-Daudé
On 9/9/19 3:06 PM, Paolo Bonzini wrote: > The CharSocketServerTestConfig and CharSocketClientTestConfig > objects escape after they are passed to g_test_add_data_func, > but they cease existing after the scope that defines them is > closed. Make them static to fix this issue. > > Fixes: e7b6ba418

[Qemu-devel] [PATCH] test-char: fix AddressSanitizer failure

2019-09-09 Thread Paolo Bonzini
The CharSocketServerTestConfig and CharSocketClientTestConfig objects escape after they are passed to g_test_add_data_func, but they cease existing after the scope that defines them is closed. Make them static to fix this issue. Fixes: e7b6ba4186f243f149b0d8cddc129fe681ba3912 Signed-off-by: Paolo