mirror of https://github.com/YosysHQ/yosys.git
Merge pull request #1780 from YosysHQ/fix-test-bash
Fix make test on macOS: add bash to brewfile & fix argument order
This commit is contained in:
commit
0cbf102364
1
Brewfile
1
Brewfile
|
@ -8,3 +8,4 @@ brew "pkg-config"
|
|||
brew "python3"
|
||||
brew "tcl-tk"
|
||||
brew "xdot"
|
||||
brew "bash"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
! ../../../yosys ../common/tribuf.v -qp "synth_xilinx"
|
||||
../../../yosys ../common/tribuf.v -qp "synth_xilinx -iopad; \
|
||||
! ../../../yosys -qp "synth_xilinx" ../common/tribuf.v
|
||||
../../../yosys -qp "synth_xilinx -iopad; \
|
||||
select -assert-count 2 t:IBUF; \
|
||||
select -assert-count 1 t:INV; \
|
||||
select -assert-count 1 t:OBUFT"
|
||||
select -assert-count 1 t:OBUFT" ../common/tribuf.v
|
||||
|
|
Loading…
Reference in New Issue