3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-04-23 20:33:32 +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

@ -8,7 +8,7 @@ endif
define run_test
@set -e; \
rc=0; \
( set -e; $(2) ) || rc=$$?; \
( set -e; $(2) ) >/dev/null 2>&1 || rc=$$?; \
if [ $$rc -eq 0 ]; then \
echo "PASS $1"; \
echo PASS > $1.result; \