C:\Users\Sim\AppData\Local\Julia-0.4.0-dev\share\julia\test>julia runtests.jl all
From worker 5: * linalg4 in 25.04 seconds
From worker 5: * linalg/lapack in 27.55 seconds
From worker 4: * linalg3 in 61.16 seconds
From worker 4: * linalg/tridiag in 15.53 seconds
From worker 3: * linalg2 in 85.88 seconds
From worker 4: * linalg/bidiag in 31.97 seconds
From worker 3: * linalg/diagonal in 28.99 seconds
From worker 3: * linalg/givens in 6.65 seconds
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| JULIA test/all | |
| From worker 4: * linalg3 in 79.08 seconds | |
| From worker 4: * linalg4 in 18.02 seconds | |
| From worker 4: * linalg/lapack in 9.43 seconds | |
| From worker 3: * linalg2 in 139.37 seconds | |
| From worker 2: * linalg1 in 147.02 seconds | |
| From worker 3: * linalg/tridiag in 17.50 seconds | |
| From worker 2: * linalg/bidiag in 25.80 seconds | |
| From worker 3: * linalg/diagonal in 31.75 seconds | |
| From worker 2: * linalg/pinv in 17.47 seconds |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| tkelman@ygdesk:~/Julia/julia-linux32$ time(make testall1 && echo ok) | |
| JULIA test/all | |
| * linalg1 in 101.66 seconds | |
| * linalg2 in 78.81 seconds | |
| * linalg3 in 34.95 seconds | |
| * linalg4 in 12.61 seconds | |
| * linalg/lapack in 5.99 seconds | |
| * linalg/triangular in 589.50 seconds | |
| * linalg/tridiag in 23.47 seconds | |
| * linalg/bidiag in 35.92 seconds |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Breakpoint 0 hit | |
| libjulia!jl_new_task: | |
| 000007fe`deb36580 4889542410 mov qword ptr [rsp+10h],rdx ss:00000000`0084f198=000000000084f1f8 | |
| 0:000> t | |
| libjulia!jl_new_task+0xe: | |
| 000007fe`deb3658e 488b05d3a0d100 mov rax,qword ptr [libjulia!jl_page_size (000007fe`df850668)] ds:000007fe`df850668=0000000000001000 | |
| 0:000> t | |
| libjulia!jl_new_task+0x1a: | |
| 000007fe`deb3659a b980010000 mov ecx,180h | |
| 0:000> t |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From worker 2: * markdown in 8.43 seconds | |
| From worker 5: * serialize in 9.05 seconds | |
| From worker 5: * i18n in 0.06 seconds | |
| From worker 8: * sparse in 153.66 seconds | |
| From worker 9: * enums in 13.28 seconds | |
| From worker 5: * fft in 10.35 seconds | |
| From worker 8: * dsp in 10.69 seconds | |
| From worker 6: * bitarray in 159.58 seconds | |
| Worker 2 terminated. | |
| ERROR (unhandled task failure): EOFError: read end of file |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| JULIA test/all | |
| From worker 3: * linalg2 in 65.72 seconds | |
| From worker 3: * linalg3 in 23.85 seconds | |
| From worker 3: * linalg4 in 8.84 seconds | |
| From worker 3: * linalg/lapack in 6.64 seconds | |
| From worker 2: * linalg1 in 143.95 seconds | |
| From worker 2: * linalg/tridiag in 7.53 seconds | |
| From worker 2: * linalg/bidiag in 12.39 seconds | |
| From worker 2: * linalg/diagonal in 8.89 seconds | |
| From worker 2: * linalg/pinv in 12.05 seconds |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ make clean && make testall1 | moreutils/ts -s | |
| make[1]: Entering directory '/home/Tony/julia32/base' | |
| rm -f *# *~ | |
| rm -f pcre_h.jl | |
| rm -f errno_h.jl | |
| rm -f build_h.jl | |
| rm -f build_h.jl.phony | |
| rm -f fenv_constants.jl | |
| rm -f uv_constants.jl | |
| rm -f file_constants.jl |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/base/string.jl b/base/string.jl | |
| index 1542296..7b1f9ce 100644 | |
| --- a/base/string.jl | |
| +++ b/base/string.jl | |
| @@ -1562,7 +1562,7 @@ function tryparse_internal{T<:Integer}(::Type{T}, s::AbstractString, startpos::I | |
| end | |
| base = convert(T,base) | |
| - m::T = div(typemax(T)-base+1,base) | |
| + m::T = T===UInt128 || T===Int128 ? typemax(T) : div(typemax(T)-base+1,base) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| julia> include("test/choosetests.jl"); testlist, net_on = choosetests(); for i i | |
| n testlist; try Base.runtests(i, 1); catch; end; end | |
| * linalg1 in 178.44 seconds | |
| SUCCESS | |
| * linalg2 in 82.84 seconds | |
| SUCCESS | |
| * linalg3 in 65.92 seconds | |
| SUCCESS | |
| * linalg4 in 22.67 seconds | |
| SUCCESS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| tkelman@ygdesk:~/Julia/julia$ JULIA_CPU_CORES=1 gdb --args usr/bin/julia-debug --check-bounds=yes test/runtests.jl all | |
| GNU gdb (Ubuntu 7.7.1-0ubuntu5~14.04.2) 7.7.1 | |
| Copyright (C) 2014 Free Software Foundation, Inc. | |
| 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. Type "show copying" | |
| and "show warranty" for details. | |
| This GDB was configured as "x86_64-linux-gnu". | |
| Type "show configuration" for configuration details. | |
| For bug reporting instructions, please see: |