]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libstdc++: Reduce output of 'make check'
authorJonathan Wakely <jwakely@redhat.com>
Thu, 7 Sep 2023 13:26:38 +0000 (14:26 +0100)
committerJonathan Wakely <jwakely@redhat.com>
Fri, 8 Sep 2023 17:04:12 +0000 (18:04 +0100)
This removes the 39 lines of shell commands that get echoed when
starting the testsuite. The fact that near the end of that output it
prints `echo "WARNING: could not find \`runtest'" 1>&2; :;` makes it
look like that warning is actually being shown to the user.

Suppress echoing the recipe, so that users only see the actual output
from the testsuite, not the makefile recipe as well.

libstdc++-v3/ChangeLog:

* testsuite/Makefile.am (check-DEJAGNU): Use @ in recipe.
* testsuite/Makefile.in: Regenerate.

libstdc++-v3/testsuite/Makefile.am
libstdc++-v3/testsuite/Makefile.in

index d457978d77b4dbd9162a9bf3ca3198dae4b98823..ef579d97efa631b244b9baaa41e01825976beb93 100644 (file)
@@ -116,7 +116,7 @@ $(check_DEJAGNU_normal_targets): check-DEJAGNUnormal%: normal%/site.exp
 
 # Run the testsuite in normal mode.
 check-DEJAGNU $(check_DEJAGNU_normal_targets): check-DEJAGNU%: site.exp
-       $(if $*,@)AR="$(AR)"; export AR; \
+       @$(if $*,@)AR="$(AR)"; export AR; \
        RANLIB="$(RANLIB)"; export RANLIB; \
        if [ -z "$*" ] && [ -n "$(filter -j%, $(MFLAGS))" ]; then \
          rm -rf normal-parallel || true; \
index 5081fdf9948969c40e1c28175b73252e610e8e0c..462db4fd709005579e55052e61b7d4777884c34a 100644 (file)
@@ -663,7 +663,7 @@ $(check_DEJAGNU_normal_targets): check-DEJAGNUnormal%: normal%/site.exp
 
 # Run the testsuite in normal mode.
 check-DEJAGNU $(check_DEJAGNU_normal_targets): check-DEJAGNU%: site.exp
-       $(if $*,@)AR="$(AR)"; export AR; \
+       @$(if $*,@)AR="$(AR)"; export AR; \
        RANLIB="$(RANLIB)"; export RANLIB; \
        if [ -z "$*" ] && [ -n "$(filter -j%, $(MFLAGS))" ]; then \
          rm -rf normal-parallel || true; \