diff options
author | Matthias Kretz <kretz@kde.org> | 2021-02-03 15:49:29 +0000 |
---|---|---|
committer | Jonathan Wakely <jwakely@redhat.com> | 2021-02-03 15:49:29 +0000 |
commit | 0a8bc61fe0222245dcdc1d8967554167099cf2a5 (patch) | |
tree | e4623b60bfe05272d1f5c862f966bed2dd6ec147 | |
parent | b27ea896dd73a9065771e3e8c2fcdc69af80e186 (diff) | |
download | gcc-0a8bc61fe0222245dcdc1d8967554167099cf2a5.zip gcc-0a8bc61fe0222245dcdc1d8967554167099cf2a5.tar.gz gcc-0a8bc61fe0222245dcdc1d8967554167099cf2a5.tar.bz2 |
libstdc++: Fix incorrect display of old test summaries
libstdc++-v3/ChangeLog:
* testsuite/Makefile.am: Ensure .simd.summary is empty before
collecting a new summary.
* testsuite/Makefile.in: Regenerate.
-rw-r--r-- | libstdc++-v3/testsuite/Makefile.am | 1 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/Makefile.in | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/libstdc++-v3/testsuite/Makefile.am b/libstdc++-v3/testsuite/Makefile.am index 5dd109b..2d3ad48 100644 --- a/libstdc++-v3/testsuite/Makefile.am +++ b/libstdc++-v3/testsuite/Makefile.am @@ -191,6 +191,7 @@ check-simd: $(srcdir)/experimental/simd/generate_makefile.sh \ ${glibcxx_srcdir}/scripts/check_simd \ testsuite_files_simd \ ${glibcxx_builddir}/scripts/testsuite_flags + @rm -f .simd.summary ${glibcxx_srcdir}/scripts/check_simd "${glibcxx_srcdir}" "${glibcxx_builddir}" "$(CXXFLAGS)" | \ while read subdir; do \ $(MAKE) -C "$${subdir}"; \ diff --git a/libstdc++-v3/testsuite/Makefile.in b/libstdc++-v3/testsuite/Makefile.in index 3900d6d..ac6207a 100644 --- a/libstdc++-v3/testsuite/Makefile.in +++ b/libstdc++-v3/testsuite/Makefile.in @@ -716,6 +716,7 @@ check-simd: $(srcdir)/experimental/simd/generate_makefile.sh \ ${glibcxx_srcdir}/scripts/check_simd \ testsuite_files_simd \ ${glibcxx_builddir}/scripts/testsuite_flags + @rm -f .simd.summary ${glibcxx_srcdir}/scripts/check_simd "${glibcxx_srcdir}" "${glibcxx_builddir}" "$(CXXFLAGS)" | \ while read subdir; do \ $(MAKE) -C "$${subdir}"; \ |