From c8e6af4fbc217f0dbc587cf8a49aa403e1ec74a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1aki=20Baz=20Castillo?= Date: Sat, 6 Jul 2024 17:17:55 +0200 Subject: [PATCH] add -Db_lundef=false --- worker/tasks.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/worker/tasks.py b/worker/tasks.py index 6ccf900357..4504df0a1e 100644 --- a/worker/tasks.py +++ b/worker/tasks.py @@ -388,7 +388,7 @@ def test(ctx): ); -@task(pre=[call(setup, meson_args=MESON_ARGS + ' -Db_sanitize=address'), flatc]) +@task(pre=[call(setup, meson_args=MESON_ARGS + ' -Db_sanitize=address -Db_lundef=false'), flatc]) def test_asan_address(ctx): """ Run worker test with Address Sanitizer with '-fsanitize=address' @@ -419,7 +419,7 @@ def test_asan_address(ctx): ); -@task(pre=[call(setup, meson_args=MESON_ARGS + ' -Db_sanitize=undefined'), flatc]) +@task(pre=[call(setup, meson_args=MESON_ARGS + ' -Db_sanitize=undefined -Db_lundef=false'), flatc]) def test_asan_undefined(ctx): """ Run worker test with undefined Sanitizer with -fsanitize=undefined @@ -450,7 +450,7 @@ def test_asan_undefined(ctx): ); -@task(pre=[call(setup, meson_args=MESON_ARGS + ' -Db_sanitize=thread'), flatc]) +@task(pre=[call(setup, meson_args=MESON_ARGS + ' -Db_sanitize=thread -Db_lundef=false'), flatc]) def test_asan_thread(ctx): """ Run worker test with thread Sanitizer with -fsanitize=thread @@ -510,7 +510,7 @@ def tidy(ctx): ); -@task(pre=[call(setup, meson_args=MESON_ARGS + ' -Db_sanitize=address'), flatc]) +@task(pre=[call(setup, meson_args=MESON_ARGS + ' -Db_sanitize=address -Db_lundef=false'), flatc]) def fuzzer(ctx): """ Build the mediasoup-worker-fuzzer binary (which uses libFuzzer)