unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#29245: make check 4 FAIL:'s on 74bea6a03 gnu: linux-libre: Update to 4.13.12.
@ 2017-11-10 14:23 myglc2
  2017-11-11 14:38 ` Ludovic Courtès
  0 siblings, 1 reply; 3+ messages in thread
From: myglc2 @ 2017-11-10 14:23 UTC (permalink / raw)
  To: 29245

[-- Attachment #1: Type: text/plain, Size: 1936 bytes --]


Please see build log excerpts below & compressed ./test-suite.log
attached.

g1@g1 ~/src/guix$ guix environment -e "(@ (gnu packages package-management) guix)" -M 4 -c 4
g1@g1 ~/src/guix [env]$ rm -fr /home/g1/.cache/guile/ccache/*
g1@g1 ~/src/guix [env]$ sudo rm -fr ./test-tmp
g1@g1 ~/src/guix [env]$ make clean-go
g1@g1 ~/src/guix [env]$ ./bootstrap
g1@g1 ~/src/guix [env]$ ./configure --localstatedir=/var --sysconfdir=/etc
g1@g1 ~/src/guix [env]$ make -j 10 check
[...]
FAIL: tests/guix-register.sh
FAIL: tests/guix-build.sh
PASS: tests/packages.scm
PASS: tests/guix-graph.sh
FAIL: tests/store.scm
PASS: tests/guix-daemon.sh
PASS: tests/guix-system.sh
PASS: tests/guix-package-net.sh
PASS: tests/guix-environment.sh
FAIL: tests/guix-package.sh
PASS: tests/builders.scm
PASS: tests/guix-gc.sh
============================================================================
Testsuite summary for GNU Guix 0.13.0.4589-74bea6
============================================================================
# TOTAL: 745
# PASS:  731
# SKIP:  10
# XFAIL: 0
# FAIL:  4
# XPASS: 0
# ERROR: 0
============================================================================
[...]
g1@g1 ~/src/guix [env]$ git -C ~/.config/guix/latest log -n 1 --oneline
74bea6a03 (HEAD, origin/master, origin/HEAD) gnu: linux-libre: Update to 4.13.12.
g1@g1 ~/src/guix [env]$ git status
HEAD detached at origin/master
nothing to commit, working tree clean
g1@g1 ~/src/guix [env]$ git remote -vv
origin	git://git.savannah.gnu.org/guix.git (fetch)
origin	git://git.savannah.gnu.org/guix.git (push)
g1@g1 ~/src/guix [env]$ guix --version
guix (GNU Guix) 0.13.0.4589-74bea6
Copyright (C) 2017 the Guix authors
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
g1@g1 ~/src/guix [env]$ git describe
v0.13.0-4589-g74bea6a03


[-- Attachment #2: test-suite.log.gz --]
[-- Type: application/octet-stream, Size: 461912 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* bug#29245: make check 4 FAIL:'s on 74bea6a03 gnu: linux-libre: Update to 4.13.12.
  2017-11-10 14:23 bug#29245: make check 4 FAIL:'s on 74bea6a03 gnu: linux-libre: Update to 4.13.12 myglc2
@ 2017-11-11 14:38 ` Ludovic Courtès
  2017-11-11 17:14   ` myglc2
  0 siblings, 1 reply; 3+ messages in thread
From: Ludovic Courtès @ 2017-11-11 14:38 UTC (permalink / raw)
  To: myglc2; +Cc: 29245

Hi,

myglc2 <myglc2@gmail.com> skribis:

> ============================================================================
> Testsuite summary for GNU Guix 0.13.0.4589-74bea6
> ============================================================================
> # TOTAL: 745
> # PASS:  731
> # SKIP:  10
> # XFAIL: 0
> # FAIL:  4
> # XPASS: 0
> # ERROR: 0
> ============================================================================

I believe this is fixed by commits
4ad3a3f995dc9bd00edbe37eb773bf07d1ad14c0 and
ae0307f7c2a6f382311a1cedcbbb3d35b6623bab.

Can you check whether it works for you?

Your test ‘test-suite.log’ file shows another failure in
tests/guix-register.sh:

  + sqlite3 /home/g1/src/guix/t-register-14509/var/guix/db/db.sqlite
  Error: near line 1: database is locked

I believe this one is due to too many parallel accesses stemming from
“make -j10”, and can be worked around by using less parallelism (or
doing “make recheck” if it fails anyway.)

Thanks,
Ludo’.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* bug#29245: make check 4 FAIL:'s on 74bea6a03 gnu: linux-libre: Update to 4.13.12.
  2017-11-11 14:38 ` Ludovic Courtès
@ 2017-11-11 17:14   ` myglc2
  0 siblings, 0 replies; 3+ messages in thread
From: myglc2 @ 2017-11-11 17:14 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 29245

On 11/11/2017 at 15:38 Ludovic Courtès writes:

> Hi,
>
> myglc2 <myglc2@gmail.com> skribis:
>
>> ============================================================================
>> Testsuite summary for GNU Guix 0.13.0.4589-74bea6
>> ============================================================================
>> # TOTAL: 745
>> # PASS:  731
>> # SKIP:  10
>> # XFAIL: 0
>> # FAIL:  4
>> # XPASS: 0
>> # ERROR: 0
>> ============================================================================
>
> I believe this is fixed by commits
> 4ad3a3f995dc9bd00edbe37eb773bf07d1ad14c0 and
> ae0307f7c2a6f382311a1cedcbbb3d35b6623bab.
>
> Can you check whether it works for you?
>
> Your test ‘test-suite.log’ file shows another failure in
> tests/guix-register.sh:
>
>   + sqlite3 /home/g1/src/guix/t-register-14509/var/guix/db/db.sqlite
>   Error: near line 1: database is locked
>
> I believe this one is due to too many parallel accesses stemming from
> “make -j10”, and can be worked around by using less parallelism (or
> doing “make recheck” if it fails anyway.)
>
> Thanks,
> Ludo’.

Thanks, that fixed it here. I'll let you close the bug. - George

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-11-11 17:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-10 14:23 bug#29245: make check 4 FAIL:'s on 74bea6a03 gnu: linux-libre: Update to 4.13.12 myglc2
2017-11-11 14:38 ` Ludovic Courtès
2017-11-11 17:14   ` myglc2

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).