mirror of
https://github.com/torlando-tech/pyxis.git
synced 2026-08-04 18:00:15 +00:00
34 lines
928 B
Python
34 lines
928 B
Python
"""Compile and execute the portable LXST call-generation guard regression."""
|
|
|
|
import shutil
|
|
import subprocess
|
|
from pathlib import Path
|
|
|
|
import pytest
|
|
|
|
HERE = Path(__file__).resolve().parent
|
|
TEST_SOURCE = HERE / "test_call_generation_guard.cpp"
|
|
|
|
|
|
def test_call_generation_guard(tmp_path):
|
|
cxx = shutil.which("c++")
|
|
if not cxx:
|
|
pytest.skip("no C++ compiler found")
|
|
binary = tmp_path / "test_call_generation_guard"
|
|
cmd = [
|
|
cxx,
|
|
"-std=c++17",
|
|
"-Wall",
|
|
"-Wextra",
|
|
"-Werror",
|
|
"-pthread",
|
|
str(TEST_SOURCE),
|
|
"-o",
|
|
str(binary),
|
|
]
|
|
compiled = subprocess.run(cmd, capture_output=True, text=True)
|
|
assert compiled.returncode == 0, compiled.stderr
|
|
ran = subprocess.run([str(binary)], capture_output=True, text=True, timeout=30)
|
|
assert ran.returncode == 0, ran.stdout + ran.stderr
|
|
assert "8 passed, 0 failed" in ran.stdout
|