GNU bug report logs - #34229
tests/upstream.scm fails on master

Previous Next

Package: guix;

Reported by: Chris Marusich <cmmarusich <at> gmail.com>

Date: Mon, 28 Jan 2019 06:50:02 UTC

Severity: normal

Done: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 34229 in the body.
You can then email your comments to 34229 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-guix <at> gnu.org:
bug#34229; Package guix. (Mon, 28 Jan 2019 06:50:03 GMT) Full text and rfc822 format available.

Acknowledgement sent to Chris Marusich <cmmarusich <at> gmail.com>:
New bug report received and forwarded. Copy sent to bug-guix <at> gnu.org. (Mon, 28 Jan 2019 06:50:03 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Chris Marusich <cmmarusich <at> gmail.com>
To: bug-guix <at> gnu.org
Subject: tests/upstream.scm fails on master
Date: Sun, 27 Jan 2019 22:49:41 -0800
[Message part 1 (text/plain, inline)]
Hi,

At v0.16.0-1516-g86228e569 (current master branch head), the
upstream.scm test fails with the following log:

--8<---------------cut here---------------start------------->8---
FAIL: tests/upstream
====================

test-name: coalesce-sources same version
location: /home/marusich/guix/tests/upstream.scm:27
source:
+ (test-equal
+   "coalesce-sources same version"
+   (list (upstream-source
+           (package "foo")
+           (version "1")
+           (urls '("ftp://example.org/foo-1.tar.xz"
+                   "ftp://example.org/foo-1.tar.gz"))
+           (signature-urls
+             '("ftp://example.org/foo-1.tar.xz.sig"
+               "ftp://example.org/foo-1.tar.gz.sig"))))
+   (coalesce-sources
+     (list (upstream-source
+             (package "foo")
+             (version "1")
+             (urls '("ftp://example.org/foo-1.tar.gz"))
+             (signature-urls
+               '("ftp://example.org/foo-1.tar.gz.sig")))
+           (upstream-source
+             (package "foo")
+             (version "1")
+             (urls '("ftp://example.org/foo-1.tar.xz"))
+             (signature-urls
+               '("ftp://example.org/foo-1.tar.xz.sig"))))))
expected-value: (#<<upstream-source> package: "foo" version: "1" urls: ("ftp://example.org/foo-1.tar.xz" "ftp://example.org/foo-1.tar.gz") signature-urls: ("ftp://example.org/foo-1.tar.xz.sig" "ftp://example.org/foo-1.tar.gz.sig") input-changes: #<procedure d8a360 at ice-9/eval.scm:330:13 ()>>)
actual-value: (#<<upstream-source> package: "foo" version: "1" urls: ("ftp://example.org/foo-1.tar.xz" "ftp://example.org/foo-1.tar.gz") signature-urls: ("ftp://example.org/foo-1.tar.xz.sig" "ftp://example.org/foo-1.tar.gz.sig") input-changes: #<procedure db3360 at ice-9/eval.scm:330:13 ()>>)
result: FAIL

random seed for tests: 1548664767
--8<---------------cut here---------------end--------------->8---

-- 
Chris
[signature.asc (application/pgp-signature, inline)]

Information forwarded to bug-guix <at> gnu.org:
bug#34229; Package guix. (Mon, 28 Jan 2019 12:50:02 GMT) Full text and rfc822 format available.

Message #8 received at 34229 <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Chris Marusich <cmmarusich <at> gmail.com>
Cc: 34229 <at> debbugs.gnu.org
Subject: Re: bug#34229: tests/upstream.scm fails on master
Date: Mon, 28 Jan 2019 13:49:48 +0100
Hello,

Chris Marusich <cmmarusich <at> gmail.com> skribis:

> At v0.16.0-1516-g86228e569 (current master branch head), the
> upstream.scm test fails with the following log:
>
> FAIL: tests/upstream
> ====================
>
> test-name: coalesce-sources same version
> location: /home/marusich/guix/tests/upstream.scm:27
> source:
> + (test-equal
> +   "coalesce-sources same version"
> +   (list (upstream-source
> +           (package "foo")
> +           (version "1")
> +           (urls '("ftp://example.org/foo-1.tar.xz"
> +                   "ftp://example.org/foo-1.tar.gz"))
> +           (signature-urls
> +             '("ftp://example.org/foo-1.tar.xz.sig"
> +               "ftp://example.org/foo-1.tar.gz.sig"))))
> +   (coalesce-sources
> +     (list (upstream-source
> +             (package "foo")
> +             (version "1")
> +             (urls '("ftp://example.org/foo-1.tar.gz"))
> +             (signature-urls
> +               '("ftp://example.org/foo-1.tar.gz.sig")))
> +           (upstream-source
> +             (package "foo")
> +             (version "1")
> +             (urls '("ftp://example.org/foo-1.tar.xz"))
> +             (signature-urls
> +               '("ftp://example.org/foo-1.tar.xz.sig"))))))
> expected-value: (#<<upstream-source> package: "foo" version: "1" urls: ("ftp://example.org/foo-1.tar.xz" "ftp://example.org/foo-1.tar.gz") signature-urls: ("ftp://example.org/foo-1.tar.xz.sig" "ftp://example.org/foo-1.tar.gz.sig") input-changes: #<procedure d8a360 at ice-9/eval.scm:330:13 ()>>)
> actual-value: (#<<upstream-source> package: "foo" version: "1" urls: ("ftp://example.org/foo-1.tar.xz" "ftp://example.org/foo-1.tar.gz") signature-urls: ("ftp://example.org/foo-1.tar.xz.sig" "ftp://example.org/foo-1.tar.gz.sig") input-changes: #<procedure db3360 at ice-9/eval.scm:330:13 ()>>)
> result: FAIL

Ricardo is working on it.  ;-)
See <https://issues.guix.info/issue/34040>.

Ludo’.




Information forwarded to bug-guix <at> gnu.org:
bug#34229; Package guix. (Wed, 30 Jan 2019 00:43:01 GMT) Full text and rfc822 format available.

Message #11 received at 34229 <at> debbugs.gnu.org (full text, mbox):

From: Ricardo Wurmus <rekado <at> elephly.net>
To: Chris Marusich <cmmarusich <at> gmail.com>
Cc: 34229 <at> debbugs.gnu.org
Subject: Re: bug#34229: tests/upstream.scm fails on master
Date: Mon, 28 Jan 2019 09:42:25 +0100
Chris Marusich <cmmarusich <at> gmail.com> writes:

> At v0.16.0-1516-g86228e569 (current master branch head), the
> upstream.scm test fails with the following log:

This is due to the changes in #34040 because one of the fields is now a
procedure.  We’re discussing at #34040 how to change this.

--
Ricardo





Reply sent to Maxim Cournoyer <maxim.cournoyer <at> gmail.com>:
You have taken responsibility. (Wed, 13 Jul 2022 15:13:01 GMT) Full text and rfc822 format available.

Notification sent to Chris Marusich <cmmarusich <at> gmail.com>:
bug acknowledged by developer. (Wed, 13 Jul 2022 15:13:02 GMT) Full text and rfc822 format available.

Message #16 received at 34229-done <at> debbugs.gnu.org (full text, mbox):

From: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
To: Ricardo Wurmus <rekado <at> elephly.net>
Cc: 34229-done <at> debbugs.gnu.org, Chris Marusich <cmmarusich <at> gmail.com>
Subject: Re: bug#34229: tests/upstream.scm fails on master
Date: Wed, 13 Jul 2022 11:12:16 -0400
Hi,

Ricardo Wurmus <rekado <at> elephly.net> writes:

> Chris Marusich <cmmarusich <at> gmail.com> writes:
>
>> At v0.16.0-1516-g86228e569 (current master branch head), the
>> upstream.scm test fails with the following log:
>
> This is due to the changes in #34040 because one of the fields is now a
> procedure.  We’re discussing at #34040 how to change this.

I see this is fixed.  Closing.

Thanks!

Maxim




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Thu, 11 Aug 2022 11:24:07 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 259 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.