mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-04 08:39:58 +00:00
Trigger abc segfault for testing
This commit is contained in:
parent
0c689091e2
commit
aa4d59cdcb
105
Makefile
105
Makefile
|
@ -832,64 +832,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
|
||||
|
|
2
abc
2
abc
|
@ -1 +1 @@
|
|||
Subproject commit f2d68d590fa6f8fc32295a2edd79afc0d14a1414
|
||||
Subproject commit adf2d09020efdea9c2f802aada948a47325dc9c8
|
3
tests/abc_segfault/run-test.sh
Normal file
3
tests/abc_segfault/run-test.sh
Normal file
|
@ -0,0 +1,3 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
../../yosys-abc -c "&segfault"
|
Loading…
Reference in a new issue