From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7971A138334 for ; Mon, 13 Aug 2018 22:21:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8FC57E0896; Mon, 13 Aug 2018 22:21:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 65E81E0896 for ; Mon, 13 Aug 2018 22:21:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C1587335C63 for ; Mon, 13 Aug 2018 22:21:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0751F394 for ; Mon, 13 Aug 2018 22:21:42 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1534198794.c8793a6a74cc9af9ad6ecc85536efb8a7ffc7eff.slyfox@gentoo> Subject: [gentoo-commits] proj/gcc-config:master commit in: tests/, / X-VCS-Repository: proj/gcc-config X-VCS-Files: gcc-config tests/run_tests X-VCS-Directories: / tests/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: c8793a6a74cc9af9ad6ecc85536efb8a7ffc7eff X-VCS-Branch: master Date: Mon, 13 Aug 2018 22:21:42 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a3869676-bf33-4a36-83d7-50ab2ffdac78 X-Archives-Hash: 525a4719c04bb93dce4509172e5306c5 commit: c8793a6a74cc9af9ad6ecc85536efb8a7ffc7eff Author: Sergei Trofimovich gentoo org> AuthorDate: Mon Aug 13 22:19:54 2018 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Mon Aug 13 22:19:54 2018 +0000 URL: https://gitweb.gentoo.org/proj/gcc-config.git/commit/?id=c8793a6a gcc-config: fix tests (drop einfo for LTO plugin) Before the change 3 tests failed due to extra output about switching to LTO plugin: * Running rw-multi-native-configs/test.use-old ... due to log difference; see .../TMP-test.use-old-rw-multi-native-configs/test.use-old.log [ !! ] * Running rw-multi-native-configs/test.select-insane ... due to log difference; see .../TMP-test.select-insane-rw-multi-native-configs/test.select-insane.log [ !! ] * Running rw-multi-native-configs/test.select ... due to log difference; see .../TMP-test.select-rw-multi-native-configs/test.select.log [ !! ] Signed-off-by: Sergei Trofimovich gentoo.org> gcc-config | 1 - tests/run_tests | 2 -- 2 files changed, 3 deletions(-) diff --git a/gcc-config b/gcc-config index e42008e..db173f3 100755 --- a/gcc-config +++ b/gcc-config @@ -698,7 +698,6 @@ switch_profile() { else BFD_PLUGINS_DIR="${EROOT}usr/${CHOST}/binutils-bin/lib/bfd-plugins" fi - einfo "Updating LTO plugin symlink in ${BFD_PLUGINS_DIR}" mkdir -p "${BFD_PLUGINS_DIR}" ln -sf "${LIBLTO_PLUGIN}" "${BFD_PLUGINS_DIR}" diff --git a/tests/run_tests b/tests/run_tests index 9ba34a0..19fbe7b 100755 --- a/tests/run_tests +++ b/tests/run_tests @@ -3,7 +3,6 @@ # Avoid bash localization of error messages export LC_ALL=C -. /lib/gentoo/functions.sh 2>/dev/null ebegin() { printf '%s*%s %s ... ' "${GOOD}" "${NORMAL}" "$*" ; } eend() { local r=${1:-0} @@ -16,7 +15,6 @@ eend() { return $r } die() { echo "$*" 1>&2; exit 1; } -eval $(eval_ecolors 2>/dev/null) vars=( CHOST GCC_CONFIG ROOT TROOT NOCOLOR RC_NOCOLOR ) unset ${vars[@]}