3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-05-14 06:05:29 +00:00
yosys/tests/rpc/generate_mk.py
Miodrag Milanovic 1c76cadac7 Converted rpc
2026-04-16 11:00:44 +02: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)