Files
openpilot/selfdrive/test/cpp_harness.py
Comma Device 3721ecbf8a Release 260111
2026-01-11 18:23:29 +08:00

11 lines
183 B
Python
Executable File

#!/usr/bin/env python3
import subprocess
import sys
from openpilot.common.prefix import OpenpilotPrefix
with OpenpilotPrefix():
ret = subprocess.call(sys.argv[1:])
sys.exit(ret)