mirror of
https://github.com/torlando-tech/pyxis.git
synced 2026-08-22 10:39:52 +00:00
16 lines
415 B
Python
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,
|
|
)
|