Skip to content

Commit

Permalink
add -Db_lundef=false
Browse files Browse the repository at this point in the history
  • Loading branch information
ibc committed Jul 6, 2024
1 parent 0b591a2 commit c8e6af4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions worker/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit c8e6af4

Please sign in to comment.