3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-05-20 17:09:45 +00:00

Update arith_tree tests

This commit is contained in:
Miodrag Milanovic 2026-04-16 11:04:14 +02:00
parent 5737d2db35
commit a666712687
3 changed files with 9 additions and 7 deletions

View file

@ -49,6 +49,7 @@ MK_TEST_DIRS += ./verific
endif
endif
MK_TEST_DIRS += ./verilog
MK_TEST_DIRS += ./arith_tree
MK_TEST_DIRS += ./simple
MK_TEST_DIRS += ./simple_abc9
MK_TEST_DIRS += ./hana

View file

@ -0,0 +1,8 @@
#!/usr/bin/env python3
import sys
sys.path.append("..")
import gen_tests_makefile
gen_tests_makefile.generate(["--yosys-scripts"])

View file

@ -1,7 +0,0 @@
#!/usr/bin/env bash
source ../common-env.sh
set -e
for x in *.ys; do
echo "Running $x.."
../../yosys -ql ${x%.ys}.log $x
done