aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely@redhat.com>2023-09-07 14:26:38 +0100
committerJonathan Wakely <jwakely@redhat.com>2023-09-08 18:04:12 +0100
commit67009f143fa722ded874bb9ebc89214573f5a124 (patch)
treeffe1d49224a235f652f505a764e5b8b3f2d2271e
parent2154bcd6d43cfd821ca70e1583880c4ed955355d (diff)
downloadgcc-67009f143fa722ded874bb9ebc89214573f5a124.zip
gcc-67009f143fa722ded874bb9ebc89214573f5a124.tar.gz
gcc-67009f143fa722ded874bb9ebc89214573f5a124.tar.bz2
libstdc++: Reduce output of 'make check'
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.
-rw-r--r--libstdc++-v3/testsuite/Makefile.am2
-rw-r--r--libstdc++-v3/testsuite/Makefile.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/libstdc++-v3/testsuite/Makefile.am b/libstdc++-v3/testsuite/Makefile.am
index d457978..ef579d9 100644
--- a/libstdc++-v3/testsuite/Makefile.am
+++ b/libstdc++-v3/testsuite/Makefile.am
@@ -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; \
diff --git a/libstdc++-v3/testsuite/Makefile.in b/libstdc++-v3/testsuite/Makefile.in
index 5081fdf..462db4f 100644
--- a/libstdc++-v3/testsuite/Makefile.in
+++ b/libstdc++-v3/testsuite/Makefile.in
@@ -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; \