mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-29 03:45:52 +00:00
Merge aa4d59cdcb
into 63b3ce0c77
This commit is contained in:
commit
42f07cb2c9
3 changed files with 57 additions and 53 deletions
105
Makefile
105
Makefile
|
@ -840,64 +840,65 @@ endif
|
|||
|
||||
# Tests that generate .mk with tests/gen-tests-makefile.sh
|
||||
MK_TEST_DIRS =
|
||||
MK_TEST_DIRS += tests/arch/anlogic
|
||||
MK_TEST_DIRS += tests/arch/ecp5
|
||||
MK_TEST_DIRS += tests/arch/efinix
|
||||
MK_TEST_DIRS += tests/arch/gatemate
|
||||
MK_TEST_DIRS += tests/arch/gowin
|
||||
MK_TEST_DIRS += tests/arch/ice40
|
||||
MK_TEST_DIRS += tests/arch/intel_alm
|
||||
MK_TEST_DIRS += tests/arch/machxo2
|
||||
MK_TEST_DIRS += tests/arch/microchip
|
||||
MK_TEST_DIRS += tests/arch/nanoxplore
|
||||
MK_TEST_DIRS += tests/arch/nexus
|
||||
MK_TEST_DIRS += tests/arch/quicklogic/pp3
|
||||
MK_TEST_DIRS += tests/arch/quicklogic/qlf_k6n10f
|
||||
MK_TEST_DIRS += tests/arch/xilinx
|
||||
MK_TEST_DIRS += tests/opt
|
||||
MK_TEST_DIRS += tests/sat
|
||||
MK_TEST_DIRS += tests/sim
|
||||
MK_TEST_DIRS += tests/svtypes
|
||||
MK_TEST_DIRS += tests/techmap
|
||||
MK_TEST_DIRS += tests/various
|
||||
ifeq ($(ENABLE_VERIFIC),1)
|
||||
ifneq ($(YOSYS_NOVERIFIC),1)
|
||||
MK_TEST_DIRS += tests/verific
|
||||
endif
|
||||
endif
|
||||
MK_TEST_DIRS += tests/verilog
|
||||
# MK_TEST_DIRS += tests/arch/anlogic
|
||||
# MK_TEST_DIRS += tests/arch/ecp5
|
||||
# MK_TEST_DIRS += tests/arch/efinix
|
||||
# MK_TEST_DIRS += tests/arch/gatemate
|
||||
# MK_TEST_DIRS += tests/arch/gowin
|
||||
# MK_TEST_DIRS += tests/arch/ice40
|
||||
# MK_TEST_DIRS += tests/arch/intel_alm
|
||||
# MK_TEST_DIRS += tests/arch/machxo2
|
||||
# MK_TEST_DIRS += tests/arch/microchip
|
||||
# MK_TEST_DIRS += tests/arch/nanoxplore
|
||||
# MK_TEST_DIRS += tests/arch/nexus
|
||||
# MK_TEST_DIRS += tests/arch/quicklogic/pp3
|
||||
# MK_TEST_DIRS += tests/arch/quicklogic/qlf_k6n10f
|
||||
# MK_TEST_DIRS += tests/arch/xilinx
|
||||
# MK_TEST_DIRS += tests/opt
|
||||
# MK_TEST_DIRS += tests/sat
|
||||
# MK_TEST_DIRS += tests/sim
|
||||
# MK_TEST_DIRS += tests/svtypes
|
||||
# MK_TEST_DIRS += tests/techmap
|
||||
# MK_TEST_DIRS += tests/various
|
||||
# ifeq ($(ENABLE_VERIFIC),1)
|
||||
# ifneq ($(YOSYS_NOVERIFIC),1)
|
||||
# MK_TEST_DIRS += tests/verific
|
||||
# endif
|
||||
# endif
|
||||
# MK_TEST_DIRS += tests/verilog
|
||||
|
||||
# Tests that don't generate .mk
|
||||
SH_TEST_DIRS =
|
||||
SH_TEST_DIRS += tests/simple
|
||||
SH_TEST_DIRS += tests/simple_abc9
|
||||
SH_TEST_DIRS += tests/hana
|
||||
SH_TEST_DIRS += tests/asicworld
|
||||
# SH_TEST_DIRS += tests/realmath
|
||||
SH_TEST_DIRS += tests/share
|
||||
SH_TEST_DIRS += tests/opt_share
|
||||
SH_TEST_DIRS += tests/fsm
|
||||
SH_TEST_DIRS += tests/memlib
|
||||
SH_TEST_DIRS += tests/bram
|
||||
SH_TEST_DIRS += tests/svinterfaces
|
||||
SH_TEST_DIRS += tests/xprop
|
||||
SH_TEST_DIRS += tests/select
|
||||
SH_TEST_DIRS += tests/proc
|
||||
SH_TEST_DIRS += tests/blif
|
||||
SH_TEST_DIRS += tests/arch
|
||||
SH_TEST_DIRS += tests/rpc
|
||||
SH_TEST_DIRS += tests/memfile
|
||||
SH_TEST_DIRS += tests/fmt
|
||||
SH_TEST_DIRS += tests/cxxrtl
|
||||
ifeq ($(ENABLE_FUNCTIONAL_TESTS),1)
|
||||
SH_TEST_DIRS += tests/functional
|
||||
endif
|
||||
SH_TEST_DIRS += tests/abc_segfault
|
||||
# SH_TEST_DIRS += tests/simple
|
||||
# SH_TEST_DIRS += tests/simple_abc9
|
||||
# SH_TEST_DIRS += tests/hana
|
||||
# SH_TEST_DIRS += tests/asicworld
|
||||
# # SH_TEST_DIRS += tests/realmath
|
||||
# SH_TEST_DIRS += tests/share
|
||||
# SH_TEST_DIRS += tests/opt_share
|
||||
# SH_TEST_DIRS += tests/fsm
|
||||
# SH_TEST_DIRS += tests/memlib
|
||||
# SH_TEST_DIRS += tests/bram
|
||||
# SH_TEST_DIRS += tests/svinterfaces
|
||||
# SH_TEST_DIRS += tests/xprop
|
||||
# SH_TEST_DIRS += tests/select
|
||||
# SH_TEST_DIRS += tests/proc
|
||||
# SH_TEST_DIRS += tests/blif
|
||||
# SH_TEST_DIRS += tests/arch
|
||||
# SH_TEST_DIRS += tests/rpc
|
||||
# SH_TEST_DIRS += tests/memfile
|
||||
# SH_TEST_DIRS += tests/fmt
|
||||
# SH_TEST_DIRS += tests/cxxrtl
|
||||
# ifeq ($(ENABLE_FUNCTIONAL_TESTS),1)
|
||||
# SH_TEST_DIRS += tests/functional
|
||||
# endif
|
||||
|
||||
# Tests that don't generate .mk and need special args
|
||||
SH_ABC_TEST_DIRS =
|
||||
SH_ABC_TEST_DIRS += tests/memories
|
||||
SH_ABC_TEST_DIRS += tests/aiger
|
||||
SH_ABC_TEST_DIRS += tests/alumacc
|
||||
# SH_ABC_TEST_DIRS += tests/memories
|
||||
# SH_ABC_TEST_DIRS += tests/aiger
|
||||
# SH_ABC_TEST_DIRS += tests/alumacc
|
||||
|
||||
# seed-tests/ is a dummy string, not a directory
|
||||
.PHONY: seed-tests
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue