3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-03-27 14:55:47 +00:00
yosys/tests/rpc/generate_mk.py
Miodrag Milanovic acfd11446d Converted rpc
2026-03-23 09:22:47 +01:00

17 lines
410 B
Python

#!/usr/bin/env python3
import sys
sys.path.append("..")
import gen_tests_makefile
import glob
def create_tests():
yss = sorted(glob.glob("*.ys"))
for ys in yss:
gen_tests_makefile.generate_ys_test(ys)
cmd = [ "python3 frontend.py unix-socket frontend.sock >/dev/null 2>&1" ]
gen_tests_makefile.generate_cmd_test("frontend.py", cmd)
gen_tests_makefile.generate_custom(create_tests)