From: Frantisek Sumsal Date: Tue, 27 Sep 2022 11:47:59 +0000 (+0200) Subject: test: make the symlink helpers a bit more quiet X-Git-Tag: v252-rc1~82^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=90743af65d50b3987b79f267523bd52432181d80;p=thirdparty%2Fsystemd.git test: make the symlink helpers a bit more quiet and show only errors/warnings. --- diff --git a/test/units/testsuite-64.sh b/test/units/testsuite-64.sh index 58f96ecce8f..8ded8b6e2df 100755 --- a/test/units/testsuite-64.sh +++ b/test/units/testsuite-64.sh @@ -24,7 +24,6 @@ helper_check_device_symlinks() {( while read -r link; do target="$(readlink -f "$link")" - echo "$link -> $target" # Both checks should do virtually the same thing, but check both to be # on the safe side if [[ ! -e "$link" || ! -e "$target" ]]; then @@ -48,8 +47,6 @@ helper_check_udev_watch() {( while read -r link; do target="$(readlink "$link")" - echo "$link -> $target" - if [[ ! -L "/run/udev/watch/$target" ]]; then echo >&2 "ERROR: symlink /run/udev/watch/$target does not exist" return 1