Files
pyxis/tests/native/test_nomadnet_mailbox_oom.py

16 lines
415 B
Python

from pathlib import Path
from native_test import compile_and_run
ROOT = Path(__file__).resolve().parents[2]
INC = ROOT / "lib/tdeck_ui/UI/LXMF"
def test_nomadnet_mailbox_contains_allocator_failure(tmp_path):
compile_and_run(
tmp_path,
name="nomadnet_mailbox_oom",
sources=[ROOT / "tests/native/test_nomadnet_mailbox_oom.cpp"],
include_dirs=[INC],
sanitize=True,
)