* bug#39374: Failing channels and graph on 1.0.1.10297-c5bbcb
@ 2020-01-31 16:37 Ellen Papsch
2020-02-05 13:49 ` Ludovic Courtès
0 siblings, 1 reply; 4+ messages in thread
From: Ellen Papsch @ 2020-01-31 16:37 UTC (permalink / raw)
To: 39374
[-- Attachment #1: Type: text/plain, Size: 317 bytes --]
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
[-- Attachment #2: config.scm --]
[-- Type: text/x-scheme, Size: 1435 bytes --]
;; This is an operating system configuration generated
;; by the graphical installer.
(use-modules (gnu))
(use-service-modules desktop networking ssh xorg)
(operating-system
(locale "de_DE.utf8")
(timezone "Europe/Berlin")
(keyboard-layout
(keyboard-layout "de" "nodeadkeys"))
(bootloader
(bootloader-configuration
(bootloader grub-bootloader)
(target "/dev/sda")
(keyboard-layout keyboard-layout)))
(swap-devices (list "/dev/sda1"))
(file-systems
(cons* (file-system
(mount-point "/")
(device
(uuid "b0ad2645-d28e-4109-94eb-72860c8edebf"
'ext4))
(type "ext4"))
%base-file-systems))
(host-name "pluto")
(users (cons* (user-account
(name "ep")
(comment "Ellen Papsch")
(group "users")
(home-directory "/home/ep")
(supplementary-groups
'("wheel" "netdev" "audio" "video")))
%base-user-accounts))
(packages
(append
(list (specification->package "evolution-data-server")
(specification->package "nss-certs"))
%base-packages))
(services
(append
(list (service gnome-desktop-service-type)
(set-xorg-configuration
(xorg-configuration
(keyboard-layout keyboard-layout))))
%desktop-services)))
[-- Attachment #3: test-suite.log.gz --]
[-- Type: application/gzip, Size: 14350 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* bug#39374: Failing channels and graph on 1.0.1.10297-c5bbcb
2020-01-31 16:37 bug#39374: Failing channels and graph on 1.0.1.10297-c5bbcb Ellen Papsch
@ 2020-02-05 13:49 ` Ludovic Courtès
2022-10-18 16:07 ` zimoun
0 siblings, 1 reply; 4+ messages in thread
From: Ludovic Courtès @ 2020-02-05 13:49 UTC (permalink / raw)
To: Ellen Papsch; +Cc: 39374
Hi Ellen,
Ellen Papsch <ellen.papsch@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’.
^ permalink raw reply [flat|nested] 4+ messages in thread
* bug#39374: Failing channels and graph on 1.0.1.10297-c5bbcb
2020-02-05 13:49 ` Ludovic Courtès
@ 2022-10-18 16:07 ` zimoun
2022-10-19 9:07 ` Ludovic Courtès
0 siblings, 1 reply; 4+ messages in thread
From: zimoun @ 2022-10-18 16:07 UTC (permalink / raw)
To: Ludovic Courtès; +Cc: 39374, Ellen Papsch
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@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
^ permalink raw reply [flat|nested] 4+ messages in thread
* bug#39374: Failing channels and graph on 1.0.1.10297-c5bbcb
2022-10-18 16:07 ` zimoun
@ 2022-10-19 9:07 ` Ludovic Courtès
0 siblings, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2022-10-19 9:07 UTC (permalink / raw)
To: zimoun; +Cc: Ellen Papsch, 39374-done
Hi,
zimoun <zimon.toutoune@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’.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-10-19 9:09 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-01-31 16:37 bug#39374: Failing channels and graph on 1.0.1.10297-c5bbcb Ellen Papsch
2020-02-05 13:49 ` Ludovic Courtès
2022-10-18 16:07 ` zimoun
2022-10-19 9:07 ` Ludovic Courtès
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).