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 2E9E3138334 for ; Mon, 8 Apr 2019 09:50:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A35EEE084A; Mon, 8 Apr 2019 09:50:19 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 78A9FE084A for ; Mon, 8 Apr 2019 09:50:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 B76D6335C30 for ; Mon, 8 Apr 2019 09:50:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B78654F6 for ; Mon, 8 Apr 2019 09:50:15 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1554715843.5a792fca6a20b83adaa1cfa6994bd019509c5a56.grobian@gentoo> Subject: [gentoo-commits] proj/portage-utils:master commit in: tests/qdepends/ X-VCS-Repository: proj/portage-utils X-VCS-Files: tests/qdepends/dotest X-VCS-Directories: tests/qdepends/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 5a792fca6a20b83adaa1cfa6994bd019509c5a56 X-VCS-Branch: master Date: Mon, 8 Apr 2019 09:50:15 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 4bab30a0-18d1-4444-a204-7447dea7f63d X-Archives-Hash: c0a31cabd13ad0e874b8fda8d4275047 commit: 5a792fca6a20b83adaa1cfa6994bd019509c5a56 Author: Fabian Groffen gentoo org> AuthorDate: Mon Apr 8 09:27:11 2019 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Mon Apr 8 09:30:43 2019 +0000 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=5a792fca travis: generate debug messages to perhaps get a glimpse of the problem Signed-off-by: Fabian Groffen gentoo.org> tests/qdepends/dotest | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/qdepends/dotest b/tests/qdepends/dotest index 6378fc7..fb1c694 100755 --- a/tests/qdepends/dotest +++ b/tests/qdepends/dotest @@ -24,11 +24,14 @@ test() { # qdepends output is based on a hash, which may differ based on # endiannes, so sort the output so we get a deterministic set while IFS= read -r line ; do + echo "I read: ${line} with ${SHELL}/${BASH}" case "${line}" in - *:*) + *":"*) + echo "I found a :" # dinosaur style for Travis' /bin/bash (or /bin/sh?) pkg="$(echo "${line}" | cut -d':' -f1)" line="$(echo "${line}" | cut -d':' -f2-)" + echo "I think pkg=${pkg}, line=${line}" env LC_ALL=C \ echo "${pkg}: $(echo "${line}" | xargs -n1 | sort | xargs)" ;;