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
2026-03-25 11:46:08 +01:00

17 lines
394 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" ]
gen_tests_makefile.generate_cmd_test("frontend.py", cmd)
gen_tests_makefile.generate_custom(create_tests)