GNU bug report logs - #39374
Failing channels and graph on 1.0.1.10297-c5bbcb

Previous Next

Package: guix;

Reported by: Ellen Papsch <ellen.papsch <at> wine-logistix.de>

Date: Fri, 31 Jan 2020 17:41:03 UTC

Severity: normal

Tags: moreinfo

Done: Ludovic Courtès <ludo <at> gnu.org>

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 39374 in the body.
You can then email your comments to 39374 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#39374; Package guix. (Fri, 31 Jan 2020 17:41:04 GMT) Full text and rfc822 format available.

Acknowledgement sent to Ellen Papsch <ellen.papsch <at> wine-logistix.de>:
New bug report received and forwarded. Copy sent to bug-guix <at> gnu.org. (Fri, 31 Jan 2020 17:41:04 GMT) Full text and rfc822 format available.

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

From: Ellen Papsch <ellen.papsch <at> wine-logistix.de>
To: bug-guix <at> gnu.org
Subject: Failing channels and graph on 1.0.1.10297-c5bbcb
Date: Fri, 31 Jan 2020 17:37:29 +0100
[Message part 1 (text/plain, inline)]
Hello,

I have installed GuixSD today with the attached config.scm and followed
the "Contributing" chapter of the manual and executed the test suite,
which results in two lone errors. I assume the errors are not due
misconfiguration, although the messages don't tell me much, I could be
mistaken.

Best regards
Ellen
[config.scm (text/x-scheme, attachment)]
[test-suite.log.gz (application/gzip, attachment)]

Information forwarded to bug-guix <at> gnu.org:
bug#39374; Package guix. (Wed, 05 Feb 2020 13:50:02 GMT) Full text and rfc822 format available.

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

From: Ludovic Courtès <ludo <at> gnu.org>
To: Ellen Papsch <ellen.papsch <at> wine-logistix.de>
Cc: 39374 <at> debbugs.gnu.org
Subject: Re: bug#39374: Failing channels and graph on 1.0.1.10297-c5bbcb
Date: Wed, 05 Feb 2020 14:49:50 +0100
Hi Ellen,

Ellen Papsch <ellen.papsch <at> wine-logistix.de> skribis:

> Hello,
>
> I have installed GuixSD today with the attached config.scm and followed
> the "Contributing" chapter of the manual and executed the test suite,
> which results in two lone errors. I assume the errors are not due
> misconfiguration, although the messages don't tell me much, I could be
> mistaken.

Thanks for your report.  The first failing test is:

--8<---------------cut here---------------start------------->8---
test-name: channel-news, one entry
location: /home/ep/src/guix/tests/channels.scm:266
source:
+ (test-assert
+   "channel-news, one entry"

[...]

+              (lset= equal?
+                     (map channel-news-entry-tag
+                          (channel-news-for-commit channel commit5 commit1))
+                     '(#f "tag-for-first-news-entry")))))))
Initialized empty Git repository in /tmp/guix-directory.KCQpPV/.git/
[master (root-commit) 60bd594] first commit
 1 file changed, 1 insertion(+)
 create mode 100644 .guix-channel
[master 5349d58] second commit
 1 file changed, 1 insertion(+)
 create mode 100644 src/a.txt
[master ef05798] third commit
 1 file changed, 1 insertion(+)
 create mode 100644 news.scm
[master 0db78fb] fourth commit
 1 file changed, 1 insertion(+)
 create mode 100644 src/b.txt
[master 9ded21e] fifth commit
 1 file changed, 1 insertion(+), 1 deletion(-)
actual-value: #f
result: FAIL

random seed for tests: 1580471271
Updating channel 'test' from Git repository at 'test'...
Updating channel 'test-channel' from Git repository at 'https://example.com/test-channel'...
Updating channel 'test' from Git repository at 'test'...
Updating channel 'test-channel' from Git repository at 'https://example.com/test-channel'...
Updating channel 'test-channel' from Git repository at 'https://example.com/test-channel'...
--8<---------------cut here---------------end--------------->8---

I wonder if this could be caused by settings in ~/.gitconfig.  Could you
try to move it out of the way and run the test?  With:

  rm ~/.gitconfig{,.bak}
  make check TESTS=tests/channels.scm

The second failure is:

--8<---------------cut here---------------start------------->8---
test-name: reverse bag DAG
location: /home/ep/src/guix/tests/graph.scm:194
source:
+ (test-assert
+   "reverse bag DAG"
+   (let-values
+     (((dune bap ocaml-base)
+       (values
+         (specification->package "dune")
+         (specification->package "bap")
+         (specification->package "ocaml-base")))

[...]

actual-error:
+ (quit 1)
result: FAIL
--8<---------------cut here---------------end--------------->8---

It’s due to recent changes in the OCaml packages.  I’ll push a fix
shortly.

Thanks!

Ludo’.




Added tag(s) moreinfo. Request was from zimoun <zimon.toutoune <at> gmail.com> to control <at> debbugs.gnu.org. (Thu, 15 Oct 2020 19:56:01 GMT) Full text and rfc822 format available.

Information forwarded to bug-guix <at> gnu.org:
bug#39374; Package guix. (Tue, 18 Oct 2022 16:21:03 GMT) Full text and rfc822 format available.

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

From: zimoun <zimon.toutoune <at> gmail.com>
To: Ludovic Courtès <ludo <at> gnu.org>
Cc: 39374 <at> debbugs.gnu.org, Ellen Papsch <ellen.papsch <at> wine-logistix.de>
Subject: Re: bug#39374: Failing channels and graph on 1.0.1.10297-c5bbcb
Date: Tue, 18 Oct 2022 18:07:31 +0200
Hi,

It is an old bug report #39374 [1].

1: <http://issues.guix.gnu.org/issue/39374>


On Wed, 05 Feb 2020 at 14:49, Ludovic Courtès <ludo <at> gnu.org> wrote:

> I wonder if this could be caused by settings in ~/.gitconfig.  Could you
> try to move it out of the way and run the test?  With:
>
>   rm ~/.gitconfig{,.bak}
>   make check TESTS=tests/channels.scm

Because of this, the bug is marked as ’moreinfo’ since 2 years, 2 days,
8 hours ago.


> The second failure is:
>
> test-name: reverse bag DAG
> location: /home/ep/src/guix/tests/graph.scm:194
> source:
> + (test-assert
> +   "reverse bag DAG"
> +   (let-values
> +     (((dune bap ocaml-base)
> +       (values
> +         (specification->package "dune")
> +         (specification->package "bap")
> +         (specification->package "ocaml-base")))
>
> [...]
>
> actual-error:
> + (quit 1)
> result: FAIL
>
> It’s due to recent changes in the OCaml packages.  I’ll push a fix
> shortly.

Well, I assume this fix had been pushed since then.


Therefore, I am in favor to close this report.  Any objection?


Cheers,
simon




Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Wed, 19 Oct 2022 09:09:02 GMT) Full text and rfc822 format available.

Notification sent to Ellen Papsch <ellen.papsch <at> wine-logistix.de>:
bug acknowledged by developer. (Wed, 19 Oct 2022 09:09:02 GMT) Full text and rfc822 format available.

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

From: Ludovic Courtès <ludo <at> gnu.org>
To: zimoun <zimon.toutoune <at> gmail.com>
Cc: Ellen Papsch <ellen.papsch <at> wine-logistix.de>, 39374-done <at> debbugs.gnu.org
Subject: Re: bug#39374: Failing channels and graph on 1.0.1.10297-c5bbcb
Date: Wed, 19 Oct 2022 11:07:31 +0200
Hi,

zimoun <zimon.toutoune <at> gmail.com> skribis:

> Well, I assume this fix had been pushed since then.

Yes, definitely.

> Therefore, I am in favor to close this report.  Any objection?

Nope, closing!

Thank you,
Ludo’.




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

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

Previous Next


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