mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-05 22:14:08 +00:00
Merge pull request #258 from jix/sby_cmd
tests: Support testing an installed SBY using the SBY_CMD make variable
This commit is contained in:
commit
cde9e57507
|
@ -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