3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-04 13:54:07 +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

View file

@ -18,7 +18,12 @@ help:
export SBY_WORKDIR_GITIGNORE := 1
ifeq ($(SBY_CMD),)
SBY_MAIN := $(realpath $(dir $(firstword $(MAKEFILE_LIST)))/../sbysrc/sby.py)
else
SBY_MAIN := $(realpath $(dir $(firstword $(MAKEFILE_LIST)))/make/run_sby.py)
endif
ifeq (nt-unix-like,$(OS_NAME))
SBY_MAIN := $(shell cygpath -w $(SBY_MAIN))
endif

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:]])