Re: [libvirt PATCH v2 7/7] ci: Enable address and undefined behavior sanitizers

2021-05-07 Thread Erik Skultety
On Fri, May 07, 2021 at 09:10:44AM +0200, Tim Wiederhake wrote: > On Fri, 2021-05-07 at 08:36 +0200, Erik Skultety wrote: > > On Thu, May 06, 2021 at 05:34:55PM +0200, Peter Krempa wrote: > > > On Thu, May 06, 2021 at 17:08:38 +0200, Tim Wiederhake wrote: > > > > meson supports the following

Re: [libvirt PATCH v2 7/7] ci: Enable address and undefined behavior sanitizers

2021-05-07 Thread Tim Wiederhake
On Fri, 2021-05-07 at 08:36 +0200, Erik Skultety wrote: > On Thu, May 06, 2021 at 05:34:55PM +0200, Peter Krempa wrote: > > On Thu, May 06, 2021 at 17:08:38 +0200, Tim Wiederhake wrote: > > > meson supports the following sanitizers: "address" (e.g. out-of- > > > bounds > > > memory access,

Re: [libvirt PATCH v2 7/7] ci: Enable address and undefined behavior sanitizers

2021-05-07 Thread Erik Skultety
On Thu, May 06, 2021 at 05:34:55PM +0200, Peter Krempa wrote: > On Thu, May 06, 2021 at 17:08:38 +0200, Tim Wiederhake wrote: > > meson supports the following sanitizers: "address" (e.g. out-of-bounds > > memory access, use-after-free, etc.), "thread" (data races), "undefined" > > (e.g. signed

Re: [libvirt PATCH v2 7/7] ci: Enable address and undefined behavior sanitizers

2021-05-06 Thread Peter Krempa
On Thu, May 06, 2021 at 17:08:38 +0200, Tim Wiederhake wrote: > meson supports the following sanitizers: "address" (e.g. out-of-bounds > memory access, use-after-free, etc.), "thread" (data races), "undefined" > (e.g. signed integer overflow), and "memory" (use of uninitialized > memory). Note

[libvirt PATCH v2 7/7] ci: Enable address and undefined behavior sanitizers

2021-05-06 Thread Tim Wiederhake
meson supports the following sanitizers: "address" (e.g. out-of-bounds memory access, use-after-free, etc.), "thread" (data races), "undefined" (e.g. signed integer overflow), and "memory" (use of uninitialized memory). Note that not all sanitizers are supported by all compilers, and that more