diff options
author | Sam James <sam@gentoo.org> | 2024-03-17 06:47:09 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-03-23 15:40:52 +0000 |
commit | c4eccac296c608e3fafad22d678540ddaab950d7 (patch) | |
tree | 06b12b03991dd0baf9a350af5b571189657d4811 /eclass/toolchain.eclass | |
parent | toolchain.eclass: rework tests more (diff) | |
download | gentoo-c4eccac296c608e3fafad22d678540ddaab950d7.tar.gz gentoo-c4eccac296c608e3fafad22d678540ddaab950d7.tar.bz2 gentoo-c4eccac296c608e3fafad22d678540ddaab950d7.zip |
toolchain.eclass: don't install all .sum files
Just rely on the validate_failures.py manifests instead. These logs get
real big real fast. People can save build logs if they want to look at
the tests otherwise.
Bug: https://bugs.gentoo.org/214345
Bug: https://bugs.gentoo.org/253926
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass/toolchain.eclass')
-rw-r--r-- | eclass/toolchain.eclass | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 6b9b49011bce..d996d2d02770 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -2339,9 +2339,8 @@ toolchain_pkg_preinst() { if [[ -f "${T}"/${CHOST}.xfail ]] ; then cp -v "${T}"/${CHOST}.xfail "${GCC_TESTS_COMPARISON_DIR}/${SLOT}" || die fi - find . -name \*.sum -exec cp --parents -v {} "${GCC_TESTS_COMPARISON_DIR}/${SLOT}" \; - ) - fi + ) + fi } #---->> pkg_post* <<---- |