3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-10-13 03:00:21 +00:00

tests: further silence outputs

This commit is contained in:
Emil J. Tywoniak 2025-09-19 19:08:29 +02:00
parent 7f030c986c
commit 05a09f34e7
2 changed files with 4 additions and 6 deletions

View file

@ -9,7 +9,7 @@ generate_target() {
echo "all: $target_name"
echo ".PHONY: $target_name"
echo "$target_name:"
printf "\t@/usr/bin/env time -f \"PASS $target_name %%e seconds\" $test_command >/dev/null 2>/dev/null\n"
printf "\t@/usr/bin/env time -f \"PASS $target_name %%e seconds\" sh -c %q\n" "{ $test_command ;} >/dev/null 2>/dev/null"
}
# $ generate_ys_test ys_file [yosys_args]