3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-09-02 09:40:43 +00:00

tests: Support testing an installed SBY using the SBY_CMD make variable

This commit is contained in:
Jannis Harder 2024-01-19 14:51:16 +01:00
parent 130aa37ed1
commit 6f0f2645c2
2 changed files with 9 additions and 0 deletions

4
tests/make/run_sby.py Normal file
View file

@ -0,0 +1,4 @@
import os
import sys
prog = os.environ.get("SBY_CMD", "sby")
os.execvp(prog, [prog, *sys.argv[1:]])