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:
parent
130aa37ed1
commit
6f0f2645c2
|
@ -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
4
tests/make/run_sby.py
Normal file
|
@ -0,0 +1,4 @@
|
|||
import os
|
||||
import sys
|
||||
prog = os.environ.get("SBY_CMD", "sby")
|
||||
os.execvp(prog, [prog, *sys.argv[1:]])
|
Loading…
Reference in a new issue