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 E4906138335 for ; Mon, 8 Apr 2019 09:50:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8BAC2E0863; Mon, 8 Apr 2019 09:50:19 +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 6AAD5E0863 for ; Mon, 8 Apr 2019 09:50:19 +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 E30BD335CF7 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 CB0AA576 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: <1554715876.dfaa42c80bb27b73ab826e5f949f76c12a2739ad.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: dfaa42c80bb27b73ab826e5f949f76c12a2739ad 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: e6e9f178-88ba-4884-b5ea-e3c7d2abd8a9 X-Archives-Hash: aaa48a4ec41fa9fd435782d033a03b65 commit: dfaa42c80bb27b73ab826e5f949f76c12a2739ad Author: Fabian Groffen gentoo org> AuthorDate: Mon Apr 8 09:31:16 2019 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Mon Apr 8 09:31:16 2019 +0000 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=dfaa42c8 travis: skip over to interesting test Signed-off-by: Fabian Groffen gentoo.org> tests/qdepends/dotest | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/qdepends/dotest b/tests/qdepends/dotest index fb1c694..8971d6e 100755 --- a/tests/qdepends/dotest +++ b/tests/qdepends/dotest @@ -51,6 +51,7 @@ test() { testf() { test "$1" "${3:-0}" -f "$2"; } +if false ; then # basic sanity checks testf 00 '|' 1 testf 01 '' @@ -63,6 +64,7 @@ testf 05 '|| ( || ( || ( x ) a ) )' # hande use deps on atoms #470180 testf 06 'a[foo(+)]' +fi testQ() { test "$1" "${3:-0}" -Q "$2"; }