Commit 416e3bf6 authored by Federico G. Schwindt's avatar Federico G. Schwindt

Ignore leaks in the binheap test for now

parent d47b8d4e
......@@ -46,6 +46,10 @@
#include "vas.h"
#include "binary_heap.h"
#if !defined(__has_feature)
#define __has_feature(x) 0
#endif
/* Parameters --------------------------------------------------------*/
/*
......@@ -526,6 +530,14 @@ vrnd_lock(void)
{
}
#if defined(__SANITIZER) || __has_feature(address_sanitizer)
int __lsan_is_turned_off(void);
int __lsan_is_turned_off(void)
{
return (1);
}
#endif
int
main(void)
{
......
......@@ -10,7 +10,6 @@ leak:VSL_Setup
leak:WRK_BgThread
#
leak:binheap_new
leak:binheap_insert
# ev
leak:mct_callback
#
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment