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 31011138334 for ; Mon, 8 Apr 2019 09:02:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0D9A0E08B0; Mon, 8 Apr 2019 09:02:27 +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 DECE2E08AA for ; Mon, 8 Apr 2019 09:02:26 +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 5B83B335CF3 for ; Mon, 8 Apr 2019 09:02:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BD8B4570 for ; Mon, 8 Apr 2019 09:02:23 +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: <1554711500.2f1506290aa5ad0023bc204dd43f72a20bc1405e.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: 2f1506290aa5ad0023bc204dd43f72a20bc1405e X-VCS-Branch: master Date: Mon, 8 Apr 2019 09:02:23 +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: dad3323b-ab59-49a5-acf0-c6c593353421 X-Archives-Hash: 1140a7ca5156cc1ab50b33e172b3a4bb commit: 2f1506290aa5ad0023bc204dd43f72a20bc1405e Author: Fabian Groffen gentoo org> AuthorDate: Mon Apr 8 08:18:20 2019 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Mon Apr 8 08:18:20 2019 +0000 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=2f150629 tests: try and get qdepends test to clear regarding order changes Travis for some reason sorts differently, try forcing explict C locale, even though Travis should be using that already. Signed-off-by: Fabian Groffen gentoo.org> tests/qdepends/dotest | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/qdepends/dotest b/tests/qdepends/dotest index 41a4edd..ab5e2d3 100755 --- a/tests/qdepends/dotest +++ b/tests/qdepends/dotest @@ -26,7 +26,8 @@ test() { while IFS= read -r line ; do if [[ ${line} == *:* ]] ; then pkg=${line%%:*} - echo "${pkg}: $(echo ${line#*:} | xargs -n1 | sort | xargs)" + env LC_ALL=C \ + echo "${pkg}: $(echo ${line#*:} | xargs -n1 | sort | xargs)" else echo "${line}" fi