3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-03-23 21:09:14 +00:00

Converted some more

This commit is contained in:
Miodrag Milanovic 2026-03-18 09:54:33 +01:00
parent d0ac6d9791
commit de8b6286b8
7 changed files with 27 additions and 24 deletions

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 >/dev/null 2>&1
done