15 lines
295 B
Python
15 lines
295 B
Python
#!/usr/bin/env python3
|
|
"""Bench runner for CONNECT: OK candidate advance/ACK sweeps."""
|
|
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
|
|
sys.path.insert(0, str(Path(__file__).resolve().parents[1]))
|
|
|
|
from h8536.connect_ok_advance_sweep import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|