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 254CD138334 for ; Sun, 15 Jul 2018 09:24:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C421FE0845; Sun, 15 Jul 2018 09:23:59 +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 771BDE0844 for ; Sun, 15 Jul 2018 09:23:59 +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 1C8B8335C99 for ; Sun, 15 Jul 2018 09:23:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 69602378 for ; Sun, 15 Jul 2018 09:23:54 +0000 (UTC) From: "Akinori Hattori" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Akinori Hattori" Message-ID: <1531646596.d4f9cf472e99ff8983f73a4f093fd8c7efe7611b.hattya@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-scheme/gauche-qdbm/files/, dev-scheme/gauche-qdbm/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-scheme/gauche-qdbm/files/gauche-qdbm-test.patch dev-scheme/gauche-qdbm/gauche-qdbm-0.2-r1.ebuild X-VCS-Directories: dev-scheme/gauche-qdbm/ dev-scheme/gauche-qdbm/files/ X-VCS-Committer: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: d4f9cf472e99ff8983f73a4f093fd8c7efe7611b X-VCS-Branch: master Date: Sun, 15 Jul 2018 09:23:54 +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: ddc33c11-adc4-4f36-b735-c3a7dd7a28fd X-Archives-Hash: 0d3ed2b5a587342ebf44f8bfbcd01a03 commit: d4f9cf472e99ff8983f73a4f093fd8c7efe7611b Author: Akinori Hattori gentoo org> AuthorDate: Sun Jul 15 09:23:16 2018 +0000 Commit: Akinori Hattori gentoo org> CommitDate: Sun Jul 15 09:23:16 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4f9cf47 dev-scheme/gauche-qdbm: fix tests Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-scheme/gauche-qdbm/files/gauche-qdbm-test.patch | 13 +++++++++++++ dev-scheme/gauche-qdbm/gauche-qdbm-0.2-r1.ebuild | 1 + 2 files changed, 14 insertions(+) diff --git a/dev-scheme/gauche-qdbm/files/gauche-qdbm-test.patch b/dev-scheme/gauche-qdbm/files/gauche-qdbm-test.patch new file mode 100644 index 00000000000..2153c8978fe --- /dev/null +++ b/dev-scheme/gauche-qdbm/files/gauche-qdbm-test.patch @@ -0,0 +1,13 @@ +--- a/test.scm ++++ b/test.scm +@@ -32,8 +32,8 @@ + (test* "qdbm-dpclosed?" #t (qdbm-dpclosed? qdbm)) + (test* "qdbm-dpremove" #t (qdbm-dpremove "test.dbm")) + +-(test* "qdbm-innerhash" -468784272 (qdbm-dpinnerhash "key")) +-(test* "qdbm-outerhash" -448645494 (qdbm-dpouterhash "key")) ++(test* "qdbm-innerhash" 604957552 (qdbm-dpinnerhash "key")) ++(test* "qdbm-outerhash" 625096330 (qdbm-dpouterhash "key")) + (test* "qdbm-primenum" 10223 (qdbm-dpprimenum 10000)) + + ;; The following is taken from ext/dbm/test.scm. diff --git a/dev-scheme/gauche-qdbm/gauche-qdbm-0.2-r1.ebuild b/dev-scheme/gauche-qdbm/gauche-qdbm-0.2-r1.ebuild index d05007bfdd6..8bfec2a242d 100644 --- a/dev-scheme/gauche-qdbm/gauche-qdbm-0.2-r1.ebuild +++ b/dev-scheme/gauche-qdbm/gauche-qdbm-0.2-r1.ebuild @@ -23,6 +23,7 @@ S="${WORKDIR}/${MY_P}" PATCHES=( "${FILESDIR}"/${PN}-gauche-package.patch + "${FILESDIR}"/${PN}-test.patch "${FILESDIR}"/${PN}-undefined-reference.patch )