3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-04-21 11:23:31 +00:00

Move output redirect to one place

This commit is contained in:
Miodrag Milanovic 2026-03-25 11:46:08 +01:00
parent b3e38daedb
commit d656f5dcdb
13 changed files with 63 additions and 64 deletions

View file

@ -1577,7 +1577,7 @@ def create_tests():
f"../tools/autotest.sh -G -j ${{SEEDOPT}} ${{EXTRA_FLAGS}} "
f"-p 'script ../t_{t.name}.ys'"
f"{libs_args} "
f"t_{t.name}.v >/dev/null 2>&1 || (cat t_{t.name}.err; exit 1)"
f"t_{t.name}.v || (cat t_{t.name}.err; exit 1)"
)
gen_tests_makefile.generate_target(t.name, cmd)