Files
MoreTore/selfdrive/test/cpp_harness.py
T
Vehicle Researcher a1af07d967 openpilot v0.11.0
2026-03-14 04:08:36 +00: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)