unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
From: ludo@gnu.org (Ludovic Courtès)
To: Marco van Hulten <marco@hulten.org>
Cc: 30282@debbugs.gnu.org
Subject: bug#30282: package julia build error
Date: Tue, 06 Feb 2018 17:04:40 +0100	[thread overview]
Message-ID: <87607a5ckn.fsf@gnu.org> (raw)
In-Reply-To: <20180128234305.03c958b0@jasniac.instanton> (Marco van Hulten's message of "Sun, 28 Jan 2018 23:43:05 +0100")

Hi,

Marco van Hulten <marco@hulten.org> skribis:

> $ guix package -i julia
> [...]

[...]

> EOFError()CapturedExceptionEOFError(()CapturedException(EOFError()CapturedException(EOFError(EOFError()), EOFError(), , Any[Any[(Any[(((::Base.Distributed.##99#100{TCPSocket,TCPSocket,Bool})() at event.jl:73, 1)])
> Process(33) - Unknown remote, closing connection.
> (::Base.Distributed.##99#100{TCPSocket,TCPSocket,Bool})(::Base.Distributed.##99#100{TCPSocket,TCPSocket,Bool})() at event.jl:73, 1)])
> Process(29) - Unknown remote, closing connection.
> () at event.jl:73, 1)])
> Process(31) - Unknown remote, closing connection.
> EOFError()CapturedException(EOFError()EOFError()CapturedException(EOFErrorCapturedException((), EOFErrorEOFError(()), , Any[AnyAny[[(EOFError()CapturedException(EOFError(), Any[((::Base.Distributed.##99#100{TCPSocket,TCPSocket,Bool})() at event.jl:73, 1)])
> Process(31) - Unknown remote, closing connection.
> EOFError()CapturedException(EOFError(), Any[((::Base.Distributed.##99#100{TCPSocket,TCPSocket,Bool})() at event.jl:73, 1)])
> Process(33) - Unknown remote, closing connection.
> (((::Base.Distributed.##99#100{TCPSocket,TCPSocket,Bool})() at event.jl:73, (::Base.Distributed.##99#100{TCPSocket,TCPSocket,Bool})1)])
> Process(34) - Unknown remote, closing connection.
> (::Base.Distributed.##99#100{TCPSocket,TCPSocket,Bool})() at event.jl:73, 1)])
> Process(30) - Unknown remote, closing connection.
> () at event.jl:73, 1)])
> Process(32) - Unknown remote, closing connection.
> EOFError()CapturedException(EOFError(), Any[((::Base.Distributed.##99#100{TCPSocket,TCPSocket,Bool})() at event.jl:73, 1)])
> Process(32) - Unknown remote, closing connection.
> EOFError()CapturedException(EOFError(), Any[((::Base.Distributed.##99#100{TCPSocket,TCPSocket,Bool})() at event.jl:73, 1)])
> Process(34) - Unknown remote, closing connection.
> EOFError()CapturedException(EOFError(), Any[((::Base.Distributed.##99#100{TCPSocket,TCPSocket,Bool})() at event.jl:73, 1)])
> Process(33) - Unknown remote, closing connection.
> EOFError()CapturedException(EOFError(), Any[((::Base.Distributed.##99#100{TCPSocket,TCPSocket,Bool})() at event.jl:73, 1)])
> Process(34) - Unknown remote, closing connection.
> distributed (3)           |  190.79  |  0.00  |  0.0 |  1.01      | 1708.66
> examples (2)              |   31.02  |  1.51  |  4.9 | 617.02     | 1654.81
> ERROR: LoadError: rmprocs: pids [3] not terminated after 30 seconds.
> Stacktrace:
>  [1] _rmprocs(::Array{Int64,1}, ::Int64) at ./distributed/cluster.jl:807
>  [2] #rmprocs#70(::Int64, ::Function, ::Array{Int64,1}, ::Vararg{Array{Int64,1},N} where N) at ./distributed/cluster.jl:775
>  [3] (::##40#46)() at /tmp/guix-build-julia-0.6.0.drv-0/julia-0.6.0/test/runtests.jl:93
>  [4] cd(::##40#46, ::String) at ./file.jl:70
> while loading /tmp/guix-build-julia-0.6.0.drv-0/julia-0.6.0/test/runtests.jl, in expression starting on line 29
> make[1]: *** [Makefile:18: all] Error 1

The test failures I have with current master are different:

--8<---------------cut here---------------start------------->8---
Error in testset distributed:
Error During Test
  Got an exception of type LoadError outside of a @test
  LoadError: Distributed test failed, cmd : `/tmp/guix-build-julia-0.6.0.drv-0/julia-0.6.0/usr/bin/julia --check-bounds=yes --startup-file=no --depwarn=error distributed_exec.jl`
  while loading /tmp/guix-build-julia-0.6.0.drv-0/julia-0.6.0/test/distributed.jl, in expression starting on line 9
Error in testset libgit2:
Test Failed
  Expression: startswith(sprint(show, e), "GitError(Code:ENOTFOUND, Class:OS, Failed to resolve path")
Error in testset libgit2:
Test Failed
  Expression: err.msg == "Invalid Content-Type: text/plain"
   Evaluated: "invalid Content-Type: text/plain" == "Invalid Content-Type: text/plain"
ERROR: LoadError: Test run finished with errors
while loading /tmp/guix-build-julia-0.6.0.drv-0/julia-0.6.0/test/runtests.jl, in expression starting on line 29
make[1]: *** [Makefile:18: all] Error 1
make: *** [Makefile:558: test] Error 2
phase `check' failed after 1300.8 seconds
--8<---------------cut here---------------end--------------->8---

I fixed the libgit2 errors and got rid of the ldconfig warnings we had:

  9805ad6f8 * gnu: julia: Don't invoke /sbin/ldconfig.
  d40b5684c * gnu: julia: Adjust libgit2 tests.

However I now get another test failure:

--8<---------------cut here---------------start------------->8---
Error in testset linalg/arnoldi:
Test Failed
  Expression: sort((eigs(A, B, nev=k, sigma=1.0))[1]) ≈ sort((eigvals(A, B))[1:k])
   Evaluated: [0.022743, 0.165356, 2.892] ≈ [0.022743, 2.892, 1.0574e15]
ERROR: LoadError: Test run finished with errors
while loading /tmp/guix-build-julia-0.6.0.drv-0/julia-0.6.0/test/runtests.jl, in expression starting on line 29
make[1]: *** [Makefile:18: all] Error 1
--8<---------------cut here---------------end--------------->8---

Thoughts?  :-)

Ludo’.

  reply	other threads:[~2018-02-06 16:05 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-28 22:43 bug#30282: package julia build error Marco van Hulten
2018-02-06 16:04 ` Ludovic Courtès [this message]
2018-02-07 11:56   ` Andreas Enge
2018-03-12 15:10   ` Ludovic Courtès
2018-03-13  9:57     ` Pjotr Prins
2018-03-13 11:58       ` Pjotr Prins
2018-03-13 17:02         ` Ludovic Courtès
2018-03-13 17:54           ` Andreas Enge
2018-03-13 21:35             ` Pjotr Prins
2018-03-16 14:07               ` Pjotr Prins
2018-03-17 18:39                 ` Ludovic Courtès
2018-03-19 19:09                   ` Pjotr Prins
2020-10-05 21:37 ` zimoun
2020-10-06 11:57   ` Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87607a5ckn.fsf@gnu.org \
    --to=ludo@gnu.org \
    --cc=30282@debbugs.gnu.org \
    --cc=marco@hulten.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).