Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI] Intermittent SEGV in cmdlineargs tests with threads #46537

Closed
Keno opened this issue Aug 29, 2022 · 10 comments
Closed

[CI] Intermittent SEGV in cmdlineargs tests with threads #46537

Keno opened this issue Aug 29, 2022 · 10 comments
Labels
ci Continuous integration multithreading Base.Threads and related functionality

Comments

@Keno
Copy link
Member

Keno commented Aug 29, 2022

E.g. https://buildkite.com/julialang/julia-master/builds/15140#0182e880-cff6-49c2-a275-2164b2b9c41e, but I've seen it in other builds also:

cmdlineargs                                       (6) \|         failed at 2022-08-29T08:13:27.795
  | Error During Test at /cache/build/default-amdci5-5/julialang/julia-master/julia-5e8e0a5190/share/julia/test/cmdlineargs.jl:258
  | Test threw exception
  | Expression: read(`$exename -p2 -t2 -e $code`, String) == "6"
  | failed process: Process(`/cache/build/default-amdci5-5/julialang/julia-master/julia-5e8e0a5190/bin/julia -Cnative -J/cache/build/default-amdci5-5/julialang/julia-master/julia-5e8e0a5190/lib/julia/sys.so --depwarn=error --check-bounds=yes -g1 --startup-file=no --startup-file=no --color=no -p2 -t2 -e 'print(sum(remotecall_fetch(Threads.nthreads, x) for x in procs()))'`, ProcessSignaled(11)) [0]
  |  
  | Stacktrace:
  | [1] pipeline_error
  | @ ./process.jl:565 [inlined]
  | [2] read(cmd::Cmd)
  | @ Base ./process.jl:449
  | [3] read(cmd::Cmd, #unused#::Type{String})
  | @ Base ./process.jl:458
  | [4] macro expansion
  | @ /cache/build/default-amdci5-5/julialang/julia-master/julia-5e8e0a5190/share/julia/stdlib/v1.9/Test/src/Test.jl:477 [inlined]
  | [5] (::Main.Test81Main_cmdlineargs.var"#11#25"{Cmd})()
  | @ Main.Test81Main_cmdlineargs /cache/build/default-amdci5-5/julialang/julia-master/julia-5e8e0a5190/share/julia/test/cmdlineargs.jl:258
@giordano giordano added the ci Continuous integration label Aug 29, 2022
@vtjnash vtjnash changed the title [CI] Intermittent SEGV in cmdlineargs tests [CI] Intermittent SEGV in cmdlineargs tests with threads Sep 28, 2022
@vtjnash vtjnash added the multithreading Base.Threads and related functionality label Sep 28, 2022
vtjnash added a commit that referenced this issue Jan 11, 2023
Closes #47590 (pthread_cancel still forbidden though, since async mode
will corrupt the process, and synchronously tested is just a slow
implementation of a boolean)

Refs #47201 (only deals with thread exit, not other case where this is
an issue, like cfunction exit and gc-safe-leave)

May help #46537, by blocking jl_wake_libuv before uv_library_shutdown,
and other tweaks to GC mode. For example:

[4011824] signal (6.-6): Aborted
gsignal at /lib/x86_64-linux-gnu/libc.so.6 (unknown line)
abort at /lib/x86_64-linux-gnu/libc.so.6 (unknown line)
uv__async_send at /workspace/srcdir/libuv/src/unix/async.c:198
uv_async_send at /workspace/srcdir/libuv/src/unix/async.c:73
jl_wake_libuv at /data/vtjnash/julia1/src/jl_uv.c:44 [inlined]
JL_UV_LOCK at /data/vtjnash/julia1/src/jl_uv.c:64 [inlined]
ijl_iolock_begin at /data/vtjnash/julia1/src/jl_uv.c:72
iolock_begin at ./libuv.jl:48 [inlined]
_trywait at ./asyncevent.jl:140
wait at ./asyncevent.jl:155 [inlined]
profile_printing_listener at /data/vtjnash/julia1/usr/share/julia/stdlib/v1.10/Profile/src/Profile.jl:39
jfptr_YY.3_58617 at /data/vtjnash/julia1/usr/lib/julia/sys.so (unknown line)
_jl_invoke at /data/vtjnash/julia1/src/gf.c:2665 [inlined]
ijl_apply_generic at /data/vtjnash/julia1/src/gf.c:2866
jl_apply at /data/vtjnash/julia1/src/julia.h:1870 [inlined]
start_task at /data/vtjnash/julia1/src/task.c:1093
Aborted

Fixes #37400
vtjnash added a commit that referenced this issue Jan 11, 2023
Closes #47590 (pthread_cancel still forbidden though, since async mode
will corrupt the process, and synchronously tested is just a slow
implementation of a boolean)

Refs #47201 (only deals with thread exit, not other case where this is
an issue, like cfunction exit and gc-safe-leave)

May help #46537, by blocking jl_wake_libuv before uv_library_shutdown,
and other tweaks to GC mode. For example:

[4011824] signal (6.-6): Aborted
gsignal at /lib/x86_64-linux-gnu/libc.so.6 (unknown line)
abort at /lib/x86_64-linux-gnu/libc.so.6 (unknown line)
uv__async_send at /workspace/srcdir/libuv/src/unix/async.c:198
uv_async_send at /workspace/srcdir/libuv/src/unix/async.c:73
jl_wake_libuv at /data/vtjnash/julia1/src/jl_uv.c:44 [inlined]
JL_UV_LOCK at /data/vtjnash/julia1/src/jl_uv.c:64 [inlined]
ijl_iolock_begin at /data/vtjnash/julia1/src/jl_uv.c:72
iolock_begin at ./libuv.jl:48 [inlined]
_trywait at ./asyncevent.jl:140
wait at ./asyncevent.jl:155 [inlined]
profile_printing_listener at /data/vtjnash/julia1/usr/share/julia/stdlib/v1.10/Profile/src/Profile.jl:39
jfptr_YY.3_58617 at /data/vtjnash/julia1/usr/lib/julia/sys.so (unknown line)
_jl_invoke at /data/vtjnash/julia1/src/gf.c:2665 [inlined]
ijl_apply_generic at /data/vtjnash/julia1/src/gf.c:2866
jl_apply at /data/vtjnash/julia1/src/julia.h:1870 [inlined]
start_task at /data/vtjnash/julia1/src/task.c:1093
Aborted

Fixes #37400
vtjnash added a commit that referenced this issue Jan 11, 2023
Closes #47590 (pthread_cancel still forbidden though, since async mode
will corrupt the process, and synchronously tested is just a slow
implementation of a boolean)

Refs #47201 (only deals with thread exit, not other case where this is
an issue, like cfunction exit and gc-safe-leave)

May help #46537, by blocking jl_wake_libuv before uv_library_shutdown,
and other tweaks to GC mode. For example:

[4011824] signal (6.-6): Aborted
gsignal at /lib/x86_64-linux-gnu/libc.so.6 (unknown line)
abort at /lib/x86_64-linux-gnu/libc.so.6 (unknown line)
uv__async_send at /workspace/srcdir/libuv/src/unix/async.c:198
uv_async_send at /workspace/srcdir/libuv/src/unix/async.c:73
jl_wake_libuv at /data/vtjnash/julia1/src/jl_uv.c:44 [inlined]
JL_UV_LOCK at /data/vtjnash/julia1/src/jl_uv.c:64 [inlined]
ijl_iolock_begin at /data/vtjnash/julia1/src/jl_uv.c:72
iolock_begin at ./libuv.jl:48 [inlined]
_trywait at ./asyncevent.jl:140
wait at ./asyncevent.jl:155 [inlined]
profile_printing_listener at /data/vtjnash/julia1/usr/share/julia/stdlib/v1.10/Profile/src/Profile.jl:39
jfptr_YY.3_58617 at /data/vtjnash/julia1/usr/lib/julia/sys.so (unknown line)
_jl_invoke at /data/vtjnash/julia1/src/gf.c:2665 [inlined]
ijl_apply_generic at /data/vtjnash/julia1/src/gf.c:2866
jl_apply at /data/vtjnash/julia1/src/julia.h:1870 [inlined]
start_task at /data/vtjnash/julia1/src/task.c:1093
Aborted

Fixes #37400
vtjnash added a commit that referenced this issue Jan 11, 2023
Closes #47590 (pthread_cancel still forbidden though, since async mode
will corrupt the process, and synchronously tested is just a slow
implementation of a boolean)

Refs #47201 (only deals with thread exit, not other case where this is
an issue, like cfunction exit and gc-safe-leave)

May help #46537, by blocking jl_wake_libuv before uv_library_shutdown,
and other tweaks to GC mode. For example:

[4011824] signal (6.-6): Aborted
gsignal at /lib/x86_64-linux-gnu/libc.so.6 (unknown line)
abort at /lib/x86_64-linux-gnu/libc.so.6 (unknown line)
uv__async_send at /workspace/srcdir/libuv/src/unix/async.c:198
uv_async_send at /workspace/srcdir/libuv/src/unix/async.c:73
jl_wake_libuv at /data/vtjnash/julia1/src/jl_uv.c:44 [inlined]
JL_UV_LOCK at /data/vtjnash/julia1/src/jl_uv.c:64 [inlined]
ijl_iolock_begin at /data/vtjnash/julia1/src/jl_uv.c:72
iolock_begin at ./libuv.jl:48 [inlined]
_trywait at ./asyncevent.jl:140
wait at ./asyncevent.jl:155 [inlined]
profile_printing_listener at /data/vtjnash/julia1/usr/share/julia/stdlib/v1.10/Profile/src/Profile.jl:39
jfptr_YY.3_58617 at /data/vtjnash/julia1/usr/lib/julia/sys.so (unknown line)
_jl_invoke at /data/vtjnash/julia1/src/gf.c:2665 [inlined]
ijl_apply_generic at /data/vtjnash/julia1/src/gf.c:2866
jl_apply at /data/vtjnash/julia1/src/julia.h:1870 [inlined]
start_task at /data/vtjnash/julia1/src/task.c:1093
Aborted

Fixes #37400
vtjnash added a commit that referenced this issue Jan 13, 2023
Closes #47590 (pthread_cancel still forbidden though, since async mode
will corrupt or deadlock the process, and synchronously tested with
cancelation disabled whenever this is a lock is just a slow
implementation of a boolean)

Refs #47201 (only deals with thread exit, not other case where this is
an issue, like cfunction exit and gc-safe-leave)

May help #46537, by blocking jl_wake_libuv before uv_library_shutdown,
and other tweaks to GC mode. For example, avoiding:

[4011824] signal (6.-6): Aborted
gsignal at /lib/x86_64-linux-gnu/libc.so.6 (unknown line)
abort at /lib/x86_64-linux-gnu/libc.so.6 (unknown line)
uv__async_send at /workspace/srcdir/libuv/src/unix/async.c:198
uv_async_send at /workspace/srcdir/libuv/src/unix/async.c:73
jl_wake_libuv at /data/vtjnash/julia1/src/jl_uv.c:44 [inlined]
JL_UV_LOCK at /data/vtjnash/julia1/src/jl_uv.c:64 [inlined]
ijl_iolock_begin at /data/vtjnash/julia1/src/jl_uv.c:72
iolock_begin at ./libuv.jl:48 [inlined]
_trywait at ./asyncevent.jl:140
wait at ./asyncevent.jl:155 [inlined]
profile_printing_listener at /data/vtjnash/julia1/usr/share/julia/stdlib/v1.10/Profile/src/Profile.jl:39
jfptr_YY.3_58617 at /data/vtjnash/julia1/usr/lib/julia/sys.so (unknown line)
_jl_invoke at /data/vtjnash/julia1/src/gf.c:2665 [inlined]
ijl_apply_generic at /data/vtjnash/julia1/src/gf.c:2866
jl_apply at /data/vtjnash/julia1/src/julia.h:1870 [inlined]
start_task at /data/vtjnash/julia1/src/task.c:1093
Aborted

Fixes #37400
vtjnash added a commit that referenced this issue Jan 13, 2023
Closes #47590 (pthread_cancel still forbidden though, since async mode
will corrupt or deadlock the process, and synchronously tested with
cancelation disabled whenever this is a lock is just a slow
implementation of a boolean)

Refs #47201 (only deals with thread exit, not other case where this is
an issue, like cfunction exit and gc-safe-leave)

May help #46537, by blocking jl_wake_libuv before uv_library_shutdown,
and other tweaks to GC mode. For example, avoiding:

[4011824] signal (6.-6): Aborted
gsignal at /lib/x86_64-linux-gnu/libc.so.6 (unknown line)
abort at /lib/x86_64-linux-gnu/libc.so.6 (unknown line)
uv__async_send at /workspace/srcdir/libuv/src/unix/async.c:198
uv_async_send at /workspace/srcdir/libuv/src/unix/async.c:73
jl_wake_libuv at /data/vtjnash/julia1/src/jl_uv.c:44 [inlined]
JL_UV_LOCK at /data/vtjnash/julia1/src/jl_uv.c:64 [inlined]
ijl_iolock_begin at /data/vtjnash/julia1/src/jl_uv.c:72
iolock_begin at ./libuv.jl:48 [inlined]
_trywait at ./asyncevent.jl:140
wait at ./asyncevent.jl:155 [inlined]
profile_printing_listener at /data/vtjnash/julia1/usr/share/julia/stdlib/v1.10/Profile/src/Profile.jl:39
jfptr_YY.3_58617 at /data/vtjnash/julia1/usr/lib/julia/sys.so (unknown line)
_jl_invoke at /data/vtjnash/julia1/src/gf.c:2665 [inlined]
ijl_apply_generic at /data/vtjnash/julia1/src/gf.c:2866
jl_apply at /data/vtjnash/julia1/src/julia.h:1870 [inlined]
start_task at /data/vtjnash/julia1/src/task.c:1093
Aborted

Fixes #37400
vtjnash added a commit that referenced this issue Jan 14, 2023
Closes #47590 (pthread_cancel still forbidden though, since async mode
will corrupt or deadlock the process, and synchronously tested with
cancelation disabled whenever this is a lock is just a slow
implementation of a boolean)

Refs #47201 (only deals with thread exit, not other case where this is
an issue, like cfunction exit and gc-safe-leave)

May help #46537, by blocking jl_wake_libuv before uv_library_shutdown,
and other tweaks to GC mode. For example, avoiding:

[4011824] signal (6.-6): Aborted
gsignal at /lib/x86_64-linux-gnu/libc.so.6 (unknown line)
abort at /lib/x86_64-linux-gnu/libc.so.6 (unknown line)
uv__async_send at /workspace/srcdir/libuv/src/unix/async.c:198
uv_async_send at /workspace/srcdir/libuv/src/unix/async.c:73
jl_wake_libuv at /data/vtjnash/julia1/src/jl_uv.c:44 [inlined]
JL_UV_LOCK at /data/vtjnash/julia1/src/jl_uv.c:64 [inlined]
ijl_iolock_begin at /data/vtjnash/julia1/src/jl_uv.c:72
iolock_begin at ./libuv.jl:48 [inlined]
_trywait at ./asyncevent.jl:140
wait at ./asyncevent.jl:155 [inlined]
profile_printing_listener at /data/vtjnash/julia1/usr/share/julia/stdlib/v1.10/Profile/src/Profile.jl:39
jfptr_YY.3_58617 at /data/vtjnash/julia1/usr/lib/julia/sys.so (unknown line)
_jl_invoke at /data/vtjnash/julia1/src/gf.c:2665 [inlined]
ijl_apply_generic at /data/vtjnash/julia1/src/gf.c:2866
jl_apply at /data/vtjnash/julia1/src/julia.h:1870 [inlined]
start_task at /data/vtjnash/julia1/src/task.c:1093
Aborted

Fixes #37400
@George9000
Copy link
Contributor

Similar, but a SIGABRT in cmdlineargs tests at 428d242. Reproducible with repeat testall

cmdlineargs                                      (2) |         failed at 2023-01-13T22:40:28.945
Error During Test at /Volumes/ssd500/julia/test/cmdlineargs.jl:723
  Test threw exception
  Expression: readchomp(`$exename --sysimage-native-code=no -E
        "Bool(Base.JLOptions().use_sysimage_native_code)"`) == "false"
  failed process: Process(`/Volumes/ssd500/julia/usr/bin/julia -Cnative -J/Volumes/ssd500/julia/usr/lib/julia/sys.dylib --depwarn=error --check-bounds=yes -g1 --startup-file=no --startup-file=no --sysimage-native-code=no -E 'Bool(Base.JLOptions().use_sysimage_native_code)'`, ProcessSignaled(6)) [0]

  Stacktrace:
   [1] pipeline_error
     @ ./process.jl:565 [inlined]
   [2] read(cmd::Cmd)
     @ Base ./process.jl:449
   [3] read(cmd::Cmd, #unused#::Type{String})
     @ Base ./process.jl:458
   [4] readchomp(x::Cmd)
     @ Base ./io.jl:961
   [5] macro expansion
     @ /Volumes/ssd500/julia/usr/share/julia/stdlib/v1.10/Test/src/Test.jl:477 [inlined]
   [6] top-level scope
     @ /Volumes/ssd500/julia/test/cmdlineargs.jl:723
details
julia> versioninfo()
Julia Version 1.10.0-DEV.366
Commit 428d242f9b (2023-01-14 01:03 UTC)
Platform Info:
  OS: macOS (arm64-apple-darwin21.6.0)
  CPU: 10 × Apple M1 Max
  WORD_SIZE: 64
  LIBM: libopenlibm
  LLVM: libLLVM-14.0.6 (ORCJIT, apple-m1)
  Threads: 5 on 8 virtual cores
Environment:
  JULIA_NUM_THREADS = 4,1
  JULIA_DEPOT_PATH = /Volumes/ssd500/juliabuildtemp
  

Sysimage built. Summary:
Base ────────  15.292393 seconds 41.9056%
Stdlibs ─────  21.199322 seconds 58.0923%
Total ───────  36.492488 seconds
    JULIA usr/lib/julia/sys-o.a
Collecting and executing precompile statements
└ Collect (Basic: ✓ 756, REPL 40/40: ✓ 1748) => Execute ✓ 1840
Precompilation complete. Summary:
Total ───────  46.057605 seconds
Outputting sysimage file...
Output ──────  74.638613 seconds
    LINK usr/lib/julia/sys.dylib
    CC usr/lib/libccalltest.dylib
    CC usr/lib/libllvmcalltest.dylib
    

% gmake testall                                                                                                                                                                                                                                                                                                         22:31
Whitespace check found no issues.
cp /Volumes/ssd500/julia/usr/lib/julia/sys.dylib /Volumes/ssd500/julia/local.dylib
/Volumes/ssd500/julia/usr/bin/julia -J /Volumes/ssd500/julia/local.dylib -e 'true'
rm /Volumes/ssd500/julia/local.dylib
    JULIA test/all
Running parallel tests with:
  nworkers() = 8
  nthreads() = 4
  Sys.CPU_THREADS = 8
  Sys.total_memory() = 64.000 GiB
  Sys.free_memory() = 43.427 GiB

Test                                        (Worker) | Time (s) | GC (s) | GC % | Alloc (MB) | RSS (MB)
LinearAlgebra/symmetric                          (6) |        started at 2023-01-13T22:32:20.763
LinearAlgebra/bidiag                             (9) |        started at 2023-01-13T22:32:20.837
LinearAlgebra/dense                              (5) |        started at 2023-01-13T22:32:20.860
LinearAlgebra/diagonal                           (7) |        started at 2023-01-13T22:32:20.861
LinearAlgebra/triangular                         (3) |        started at 2023-01-13T22:32:20.861
LinearAlgebra/addmul                             (2) |        started at 2023-01-13T22:32:20.861
LinearAlgebra/matmul                             (4) |        started at 2023-01-13T22:32:20.861
LinearAlgebra/special                            (8) |        started at 2023-01-13T22:32:20.861
LinearAlgebra/special                            (8) |   102.26 |   2.09 |  2.0 |   15135.73 |  1170.34
LinearAlgebra/qr                                 (8) |        started at 2023-01-13T22:34:03.252
LinearAlgebra/bidiag                             (9) |   105.69 |   2.68 |  2.5 |   13478.79 |  1191.31
LinearAlgebra/cholesky                           (9) |        started at 2023-01-13T22:34:06.601
LinearAlgebra/addmul                             (2) |   113.34 |   1.39 |  1.2 |   10281.61 |   866.86
LinearAlgebra/blas                               (2) |        started at 2023-01-13T22:34:14.258
LinearAlgebra/blas                               (2) |    29.19 |   0.54 |  1.9 |    3398.10 |  1514.92
LinearAlgebra/lu                                 (2) |        started at 2023-01-13T22:34:43.449
LinearAlgebra/dense                              (5) |   143.65 |   5.83 |  4.1 |   18514.48 |  2174.72
LinearAlgebra/uniformscaling                     (5) |        started at 2023-01-13T22:34:44.589
LinearAlgebra/diagonal                           (7) |   152.31 |   7.01 |  4.6 |   20075.57 |  2254.61
LinearAlgebra/structuredbroadcast                (7) |        started at 2023-01-13T22:34:53.238
LinearAlgebra/cholesky                           (9) |    46.87 |   1.50 |  3.2 |    5377.29 |  1463.30
LinearAlgebra/hessenberg                         (9) |        started at 2023-01-13T22:34:53.474
LinearAlgebra/qr                                 (8) |    51.44 |   2.61 |  5.1 |   11747.60 |  1632.33
LinearAlgebra/svd                                (8) |        started at 2023-01-13T22:34:54.695
LinearAlgebra/uniformscaling                     (5) |    16.07 |   0.95 |  5.9 |    2272.42 |  2410.38
LinearAlgebra/eigen                              (5) |        started at 2023-01-13T22:35:00.663
LinearAlgebra/symmetric                          (6) |   166.27 |   6.02 |  3.6 |   19798.51 |  1970.50
LinearAlgebra/tridiag                            (6) |        started at 2023-01-13T22:35:07.184
LinearAlgebra/matmul                             (4) |   176.40 |   6.02 |  3.4 |   23029.06 |  1707.09
LinearAlgebra/lapack                             (4) |        started at 2023-01-13T22:35:17.311
LinearAlgebra/structuredbroadcast                (7) |    24.55 |   1.47 |  6.0 |    3563.96 |  2464.64
LinearAlgebra/lq                                 (7) |        started at 2023-01-13T22:35:17.790
LinearAlgebra/hessenberg                         (9) |    25.04 |   0.96 |  3.8 |    3097.36 |  1646.81
LinearAlgebra/adjtrans                           (9) |        started at 2023-01-13T22:35:18.517
LinearAlgebra/eigen                              (5) |    22.61 |   1.01 |  4.5 |    2685.41 |  2600.83
LinearAlgebra/generic                            (5) |        started at 2023-01-13T22:35:23.272
LinearAlgebra/svd                                (8) |    29.43 |   1.33 |  4.5 |    3883.37 |  1857.70
LinearAlgebra/schur                              (8) |        started at 2023-01-13T22:35:24.131
LinearAlgebra/tridiag                            (6) |    24.48 |   1.03 |  4.2 |    3051.33 |  2163.00
LinearAlgebra/bunchkaufman                       (6) |        started at 2023-01-13T22:35:31.669
LinearAlgebra/adjtrans                           (9) |    14.65 |   0.73 |  5.0 |    2114.14 |  1798.17
LinearAlgebra/givens                             (9) |        started at 2023-01-13T22:35:33.168
LinearAlgebra/lu                                 (2) |    54.29 |   1.37 |  2.5 |    6878.07 |  1905.41
LinearAlgebra/pinv                               (2) |        started at 2023-01-13T22:35:37.746
LinearAlgebra/givens                             (9) |     4.59 |   0.19 |  4.1 |     586.43 |  1830.31
LinearAlgebra/factorization                      (9) |        started at 2023-01-13T22:35:37.756
LinearAlgebra/lapack                             (4) |    21.87 |   0.81 |  3.7 |    2538.05 |  1894.58
LinearAlgebra/ldlt                               (4) |        started at 2023-01-13T22:35:39.182
LinearAlgebra/ldlt                               (4) |     0.65 |   0.03 |  4.9 |      77.56 |  1900.80
ambiguous                                        (4) |        started at 2023-01-13T22:35:39.831
LinearAlgebra/generic                            (5) |    16.62 |   0.71 |  4.3 |    1703.75 |  2891.23
compiler/datastructures                          (5) |        started at 2023-01-13T22:35:39.895
LinearAlgebra/factorization                      (9) |     2.30 |   0.10 |  4.2 |     286.83 |  1842.83
compiler/inference                               (9) |        started at 2023-01-13T22:35:40.056
      From worker 4:	WARNING: method definition for ambig_with_bounds at /Volumes/ssd500/julia/test/ambiguous.jl:49 declares type variable S but does not use it.
      From worker 4:	WARNING: method definition for ambig_with_bounds at /Volumes/ssd500/julia/test/ambiguous.jl:50 declares type variable S but does not use it.
compiler/datastructures                          (5) |     2.17 |   0.09 |  4.0 |     241.97 |  2895.92
compiler/effects                                 (5) |        started at 2023-01-13T22:35:42.076
      From worker 4:	WARNING: method definition for f11407 at /Volumes/ssd500/julia/test/ambiguous.jl:380 declares type variable V but does not use it.
      From worker 4:	WARNING: method definition for f11407 at /Volumes/ssd500/julia/test/ambiguous.jl:380 declares type variable K but does not use it.
      From worker 4:	WARNING: method definition for stripType at /Volumes/ssd500/julia/test/ambiguous.jl:395 declares type variable T but does not use it.
ambiguous                                        (4) |     2.59 |   0.09 |  3.7 |     429.01 |  1921.84
compiler/validation                              (4) |        started at 2023-01-13T22:35:42.425
compiler/validation                              (4) |     0.19 |   0.02 |  9.5 |      16.87 |  1923.80
compiler/ssair                                   (4) |        started at 2023-01-13T22:35:42.613
compiler/effects                                 (5) |     1.10 |   0.05 |  4.8 |     117.29 |  2901.31
compiler/irpasses                                (5) |        started at 2023-01-13T22:35:43.178
LinearAlgebra/pinv                               (2) |     6.08 |   0.34 |  5.6 |    1393.31 |  2161.94
compiler/codegen                                 (2) |        started at 2023-01-13T22:35:43.832
LinearAlgebra/lq                                 (7) |    27.75 |   2.45 |  8.8 |    9855.83 |  2845.23
compiler/inline                                  (7) |        started at 2023-01-13T22:35:45.538
compiler/irpasses                                (5) |     2.65 |   0.11 |  4.1 |     281.89 |  2917.53
compiler/contextual                              (5) |        started at 2023-01-13T22:35:45.838
compiler/ssair                                   (4) |     3.87 |   0.08 |  2.0 |     291.29 |  1944.73
compiler/AbstractInterpreter                     (4) |        started at 2023-01-13T22:35:46.484
compiler/contextual                              (5) |     1.59 |   0.02 |  1.3 |      67.48 |  2924.83
compiler/EscapeAnalysis/local                    (5) |        started at 2023-01-13T22:35:47.436
compiler/inline                                  (7) |     3.21 |   0.37 | 11.5 |     211.58 |  2860.23
compiler/EscapeAnalysis/interprocedural          (7) |        started at 2023-01-13T22:35:48.752
compiler/codegen                                 (2) |     6.68 |   0.74 | 11.0 |     176.30 |  2171.12
subarray                                         (2) |        started at 2023-01-13T22:35:50.514
LinearAlgebra/bunchkaufman                       (6) |    21.48 |   1.06 |  5.0 |    2859.37 |  2306.41
strings/basic                                    (6) |        started at 2023-01-13T22:35:53.150
compiler/inference                               (9) |    13.13 |   0.43 |  3.3 |    1139.32 |  1961.53
strings/search                                   (9) |        started at 2023-01-13T22:35:53.191
compiler/EscapeAnalysis/interprocedural          (7) |     4.97 |   0.07 |  1.4 |     361.49 |  2873.33
strings/util                                     (7) |        started at 2023-01-13T22:35:53.733
compiler/EscapeAnalysis/local                    (5) |     7.97 |   0.24 |  3.0 |     583.34 |  2949.88
strings/io                                       (5) |        started at 2023-01-13T22:35:55.411
strings/search                                   (9) |     2.41 |   0.03 |  1.3 |     158.29 |  1974.84
strings/types                                    (9) |        started at 2023-01-13T22:35:55.618
strings/io                                       (5) |     1.66 |   0.10 |  5.8 |     199.45 |  2999.25
unicode/utf8                                     (5) |        started at 2023-01-13T22:35:57.071
unicode/utf8                                     (5) |     0.07 |   0.00 |  0.0 |       3.41 |  2999.25
core                                             (5) |        started at 2023-01-13T22:35:57.139
strings/basic                                    (6) |     4.39 |   0.13 |  2.9 |     388.93 |  2344.22
worlds                                           (6) |        started at 2023-01-13T22:35:57.539
strings/types                                    (9) |     1.96 |   0.19 |  9.7 |    1009.30 |  1983.89
atomics                                          (9) |        started at 2023-01-13T22:35:57.600
worlds                                           (6) |     1.17 |   0.03 |  3.0 |     105.76 |  2350.56
keywordargs                                      (6) |        started at 2023-01-13T22:35:58.713
compiler/AbstractInterpreter                     (4) |    12.51 |   0.32 |  2.5 |     748.32 |  1996.22
numbers                                          (4) |        started at 2023-01-13T22:35:59
strings/util                                     (7) |     5.49 |   0.27 |  5.0 |     809.00 |  2912.98
subtype                                          (7) |        started at 2023-01-13T22:35:59.238
keywordargs                                      (6) |     0.96 |   0.04 |  3.7 |      83.00 |  2356.94
char                                             (6) |        started at 2023-01-13T22:35:59.680
char                                             (6) |     1.20 |   0.05 |  4.5 |     117.46 |  2366.11
triplequote                                      (6) |        started at 2023-01-13T22:36:00.880
triplequote                                      (6) |     0.02 |   0.00 |  0.0 |       0.50 |  2366.14
intrinsics                                       (6) |        started at 2023-01-13T22:36:00.911
intrinsics                                       (6) |     1.52 |   0.05 |  3.5 |     148.17 |  2404.05
dict                                             (6) |        started at 2023-01-13T22:36:02.443
atomics                                          (9) |     7.97 |   0.82 | 10.3 |    2709.64 |  2088.97
hashing                                          (9) |        started at 2023-01-13T22:36:05.587
subtype                                          (7) |     7.00 |   0.25 |  3.6 |    1464.27 |  3203.78
iobuffer                                         (7) |        started at 2023-01-13T22:36:06.251
iobuffer                                         (7) |     0.71 |   0.00 |  0.0 |      66.09 |  3210.98
staged                                           (7) |        started at 2023-01-13T22:36:06.966
staged                                           (7) |     1.53 |   0.03 |  1.8 |     214.68 |  3218.81
offsetarray                                      (7) |        started at 2023-01-13T22:36:08.508
hashing                                          (9) |     7.67 |   0.30 |  3.9 |    1028.92 |  2173.20
arrayops                                         (9) |        started at 2023-01-13T22:36:13.292
dict                                             (6) |    14.30 |   1.34 |  9.4 |    1689.25 |  2507.73
tuple                                            (6) |        started at 2023-01-13T22:36:16.745
tuple                                            (6) |     4.70 |   0.14 |  2.9 |     612.57 |  2532.64
reduce                                           (6) |        started at 2023-01-13T22:36:21.444
offsetarray                                      (7) |    20.83 |   0.39 |  1.9 |    2852.32 |  3324.06
reducedim                                        (7) |        started at 2023-01-13T22:36:29.346
numbers                                          (4) |    32.13 |   0.63 |  1.9 |    3594.26 |  2821.98
abstractarray                                    (4) |        started at 2023-01-13T22:36:31.129
reduce                                           (6) |    10.91 |   0.38 |  3.4 |    1608.06 |  2613.50
intfuncs                                         (6) |        started at 2023-01-13T22:36:32.352
      From worker 5:	WARNING: method definition for bad_tvars at /Volumes/ssd500/julia/test/core.jl:5246 declares type variable T but does not use it.
      From worker 5:	WARNING: method definition for bad_tvars2 at /Volumes/ssd500/julia/test/core.jl:5249 declares type variable T but does not use it.
LinearAlgebra/schur                              (8) |    76.43 |   0.43 |  0.6 |    1303.51 |  1949.95
simdloop                                         (8) |        started at 2023-01-13T22:36:40.567
simdloop                                         (8) |     1.00 |   0.05 |  4.8 |     116.29 |  1955.73
vecelement                                       (8) |        started at 2023-01-13T22:36:41.567
vecelement                                       (8) |     3.83 |   0.11 |  2.7 |     332.92 |  1989.03
rational                                         (8) |        started at 2023-01-13T22:36:45.404
intfuncs                                         (6) |    13.14 |   0.07 |  0.5 |     378.40 |  2651.20
bitarray                                         (6) |        started at 2023-01-13T22:36:45.500
core                                             (5) |    52.73 |  14.88 | 28.2 |   12254.33 |  5176.00
copy                                             (5) |        started at 2023-01-13T22:36:50.398
copy                                             (5) |     1.93 |   0.03 |  1.5 |     256.18 |  5176.00
math                                             (5) |        started at 2023-01-13T22:36:52.341
rational                                         (8) |    13.84 |   0.38 |  2.7 |    1156.50 |  2142.03
fastmath                                         (8) |        started at 2023-01-13T22:36:59.250
LinearAlgebra/triangular                         (3) |   281.10 |  10.77 |  3.8 |   34861.55 |  3411.28
functional                                       (3) |        started at 2023-01-13T22:37:02.010
fastmath                                         (8) |     3.48 |   0.05 |  1.5 |     232.21 |  2216.50
iterators                                        (8) |        started at 2023-01-13T22:37:02.737
functional                                       (3) |     3.45 |   0.22 |  6.4 |     543.07 |  3431.89
operators                                        (3) |        started at 2023-01-13T22:37:05.459
operators                                        (3) |     4.40 |   0.25 |  5.7 |     631.27 |  3457.48
ordering                                         (3) |        started at 2023-01-13T22:37:09.862
arrayops                                         (9) |    56.72 |   2.97 |  5.2 |    8363.57 |  2791.52
path                                             (9) |        started at 2023-01-13T22:37:10.129
path                                             (9) |     0.61 |   0.02 |  3.5 |      73.60 |  2797.67
ccall                                            (9) |        started at 2023-01-13T22:37:10.759
math                                             (5) |    20.28 |   0.32 |  1.6 |    2875.91 |  5176.00
parse                                            (5) |        started at 2023-01-13T22:37:12.621
ordering                                         (3) |     3.09 |   0.10 |  3.4 |     296.45 |  3474.91
loading                                          (3) |        started at 2023-01-13T22:37:12.955
reducedim                                        (7) |    44.17 |   0.69 |  1.6 |    5076.61 |  3473.81
gmp                                              (7) |        started at 2023-01-13T22:37:13.525
parse                                            (5) |     2.10 |   0.03 |  1.3 |     189.52 |  5176.00
sorting                                          (5) |        started at 2023-01-13T22:37:14.720
gmp                                              (7) |     3.16 |   0.06 |  2.0 |     280.94 |  3504.61
spawn                                            (7) |        started at 2023-01-13T22:37:16.709
      From worker 7:	       [stdio passthrough ok]
ccall                                            (9) |    12.21 |   0.44 |  3.6 |     426.15 |  2844.67
backtrace                                        (9) |        started at 2023-01-13T22:37:22.972
backtrace                                        (9) |     0.78 |   0.03 |  3.8 |      51.27 |  2844.67
exceptions                                       (9) |        started at 2023-01-13T22:37:23.754
exceptions                                       (9) |     1.19 |   0.26 | 22.3 |      24.38 |  2844.67
file                                             (9) |        started at 2023-01-13T22:37:24.944
file                                             (9) |     4.07 |   0.07 |  1.7 |     248.04 |  2854.23
read                                             (9) |        started at 2023-01-13T22:37:29.011
loading                                          (3) |    16.78 |   0.59 |  3.5 |    2282.83 |  3518.27
version                                          (3) |        started at 2023-01-13T22:37:29.740
version                                          (3) |     0.52 |   0.02 |  3.5 |      39.20 |  3521.41
namedtuple                                       (3) |        started at 2023-01-13T22:37:30.258
namedtuple                                       (3) |     1.89 |   0.09 |  4.6 |     201.61 |  3535.33
mpfr                                             (3) |        started at 2023-01-13T22:37:32.151
abstractarray                                    (4) |    61.35 |   1.20 |  2.0 |    8063.62 |  3195.12
broadcast                                        (4) |        started at 2023-01-13T22:37:36.452
mpfr                                             (3) |     8.70 |   0.28 |  3.3 |    1466.44 |  3784.84
complex                                          (3) |        started at 2023-01-13T22:37:40.852
read                                             (9) |    16.75 |   0.71 |  4.3 |    3602.29 |  4037.91
floatapprox                                      (9) |        started at 2023-01-13T22:37:45.768
floatapprox                                      (9) |     0.67 |   0.02 |  2.5 |      73.34 |  4037.91
reflection                                       (9) |        started at 2023-01-13T22:37:46.450
complex                                          (3) |     5.91 |   0.17 |  2.9 |     414.17 |  3846.55
regex                                            (3) |        started at 2023-01-13T22:37:46.760
regex                                            (3) |     1.22 |   0.06 |  4.7 |     121.43 |  3851.89
float16                                          (3) |        started at 2023-01-13T22:37:47.980
reflection                                       (9) |     3.69 |   0.10 |  2.7 |     438.80 |  4037.91
combinatorics                                    (9) |        started at 2023-01-13T22:37:50.148
iterators                                        (8) |    48.08 |   2.76 |  5.7 |    8666.29 |  2562.34
sysinfo                                          (8) |        started at 2023-01-13T22:37:50.818
sysinfo                                          (8) |     0.06 |   0.00 |  0.0 |       7.13 |  2564.14
env                                              (8) |        started at 2023-01-13T22:37:50.881
env                                              (8) |     0.52 |   0.00 |  0.0 |      33.06 |  2566.86
rounding                                         (8) |        started at 2023-01-13T22:37:51.405
float16                                          (3) |     3.56 |   0.33 |  9.4 |    1330.07 |  3861.09
ranges                                           (3) |        started at 2023-01-13T22:37:51.544
combinatorics                                    (9) |     3.45 |   0.20 |  5.8 |     984.75 |  4037.91
mod2pi                                           (9) |        started at 2023-01-13T22:37:53.603
mod2pi                                           (9) |     0.24 |   0.00 |  0.0 |      15.25 |  4037.91
euler                                            (9) |        started at 2023-01-13T22:37:53.847
rounding                                         (8) |     2.68 |   0.10 |  3.9 |     330.03 |  2588.42
show                                             (8) |        started at 2023-01-13T22:37:54.086
euler                                            (9) |     0.58 |   0.02 |  3.6 |      78.75 |  4037.91
client                                           (9) |        started at 2023-01-13T22:37:54.430
client                                           (9) |     0.60 |   0.00 |  0.0 |      64.63 |  4037.91
errorshow                                        (9) |        started at 2023-01-13T22:37:55.032
subarray                                         (2) |   125.97 |   4.35 |  3.5 |   18202.37 |  3357.55
sets                                             (2) |        started at 2023-01-13T22:37:56.488
errorshow                                        (9) |     4.18 |   0.09 |  2.1 |     316.87 |  4037.91
goto                                             (9) |        started at 2023-01-13T22:37:59.210
goto                                             (9) |     0.04 |   0.00 |  0.0 |       0.87 |  4037.91
llvmcall                                         (9) |        started at 2023-01-13T22:37:59.247
llvmcall                                         (9) |     0.32 |   0.02 |  7.4 |      45.59 |  4037.91
llvmcall2                                        (9) |        started at 2023-01-13T22:37:59.567
llvmcall2                                        (9) |     0.05 |   0.00 |  0.0 |       1.18 |  4037.91
ryu                                              (9) |        started at 2023-01-13T22:37:59.619
ryu                                              (9) |     0.95 |   0.00 |  0.0 |      49.63 |  4037.91
some                                             (9) |        started at 2023-01-13T22:38:00.574
some                                             (9) |     0.54 |   0.02 |  4.5 |      68.27 |  4037.91
meta                                             (9) |        started at 2023-01-13T22:38:01.114
meta                                             (9) |     0.65 |   0.02 |  3.6 |      50.48 |  4037.91
stacktraces                                      (9) |        started at 2023-01-13T22:38:01.768
stacktraces                                      (9) |     0.90 |   0.02 |  2.7 |      90.92 |  4037.91
docs                                             (9) |        started at 2023-01-13T22:38:02.667
docs                                             (9) |     2.56 |   0.11 |  4.2 |     370.33 |  4037.91
misc                                             (9) |        started at 2023-01-13T22:38:05.226
broadcast                                        (4) |    32.43 |   0.78 |  2.4 |    4376.06 |  3398.55
binaryplatforms                                  (4) |        started at 2023-01-13T22:38:08.912
binaryplatforms                                  (4) |     3.19 |   0.05 |  1.4 |     367.68 |  3464.69
atexit                                           (4) |        started at 2023-01-13T22:38:12.103
show                                             (8) |    18.07 |   0.79 |  4.4 |    2118.75 |  2690.48
enums                                            (8) |        started at 2023-01-13T22:38:12.160
sets                                             (2) |    16.26 |   0.42 |  2.6 |    1288.68 |  3486.80
cmdlineargs                                      (2) |        started at 2023-01-13T22:38:12.753
enums                                            (8) |     1.89 |   0.09 |  4.7 |     198.17 |  2701.78
int                                              (8) |        started at 2023-01-13T22:38:14.056
bitarray                                         (6) |    89.67 |   1.98 |  2.2 |   11663.85 |  2982.89
interpreter                                      (6) |        started at 2023-01-13T22:38:15.227
interpreter                                      (6) |     0.89 |   0.02 |  2.4 |       4.57 |  2983.53
checked                                          (6) |        started at 2023-01-13T22:38:16.148
atexit                                           (4) |     5.56 |   0.00 |  0.0 |      20.22 |  3465.94
bitset                                           (4) |        started at 2023-01-13T22:38:17.670
bitset                                           (4) |     1.25 |   0.04 |  3.2 |     109.50 |  3470.62
floatfuncs                                       (4) |        started at 2023-01-13T22:38:18.919
checked                                          (6) |     3.93 |   0.07 |  1.7 |     305.31 |  3050.94
boundscheck                                      (6) |        started at 2023-01-13T22:38:20.085
int                                              (8) |     6.80 |   0.19 |  2.8 |     535.16 |  2755.86
error                                            (8) |        started at 2023-01-13T22:38:20.859
error                                            (8) |     1.29 |   0.03 |  2.6 |      67.03 |  2762.47
cartesian                                        (8) |        started at 2023-01-13T22:38:22.156
boundscheck                                      (6) |     3.59 |   0.00 |  0.0 |       0.64 |  3051.03
osutils                                          (6) |        started at 2023-01-13T22:38:23.681
osutils                                          (6) |     0.04 |   0.00 |  0.0 |       1.17 |  3051.14
channels                                         (6) |        started at 2023-01-13T22:38:23.722
ranges                                           (3) |    32.36 |   2.18 |  6.8 |    8403.53 |  4030.58
iostream                                         (3) |        started at 2023-01-13T22:38:23.922
iostream                                         (3) |     0.67 |   0.02 |  3.3 |      98.40 |  4036.75
secretbuffer                                     (3) |        started at 2023-01-13T22:38:24.612
secretbuffer                                     (3) |     0.75 |   0.56 | 74.3 |       7.12 |  4038.25
specificity                                      (3) |        started at 2023-01-13T22:38:25.375
specificity                                      (3) |     0.13 |   0.00 |  0.0 |       4.95 |  4038.59
reinterpretarray                                 (3) |        started at 2023-01-13T22:38:25.505
cartesian                                        (8) |     4.08 |   0.21 |  5.0 |     473.41 |  2786.16
syntax                                           (8) |        started at 2023-01-13T22:38:26.251
      From worker 8:	WARNING: method definition for f33135 at /Volumes/ssd500/julia/test/syntax.jl:2010 declares type variable C1 but does not use it.
      From worker 9:	┌ Warning: `old_return_args` is deprecated, use `new_return_args` instead.
      From worker 9:	│   caller = macro expansion at Test.jl:477 [inlined]
      From worker 9:	└ @ Core /Volumes/ssd500/julia/usr/share/julia/stdlib/v1.10/Test/src/Test.jl:477
      From worker 9:	┌ Warning: `old_return_args` is deprecated, use `new_return_args` instead.
      From worker 9:	│   caller = ip:0x0
      From worker 9:	└ @ Core :-1
syntax                                           (8) |     4.69 |   0.15 |  3.2 |     388.33 |  3063.38
corelogging                                      (8) |        started at 2023-01-13T22:38:30.941
misc                                             (9) |    25.88 |   3.11 | 12.0 |    2073.86 |  4037.91
missing                                          (9) |        started at 2023-01-13T22:38:31.757
corelogging                                      (8) |     2.36 |   0.08 |  3.3 |     207.60 |  3219.62
asyncmap                                         (8) |        started at 2023-01-13T22:38:33.307
reinterpretarray                                 (3) |     9.27 |   0.41 |  4.4 |    1346.67 |  4086.50
smallarrayshrink                                 (3) |        started at 2023-01-13T22:38:34.780
smallarrayshrink                                 (3) |     0.22 |   0.01 |  6.7 |      24.26 |  4086.89
opaque_closure                                   (3) |        started at 2023-01-13T22:38:35
opaque_closure                                   (3) |     0.45 |   0.01 |  2.9 |      51.33 |  4090.28
filesystem                                       (3) |        started at 2023-01-13T22:38:35.452
filesystem                                       (3) |     0.14 |   0.01 |  9.4 |      16.55 |  4090.72
download                                         (3) |        started at 2023-01-13T22:38:35.592
asyncmap                                         (8) |     6.73 |   0.29 |  4.3 |     655.35 |  3282.80
SparseArrays/allowscalar                         (8) |        started at 2023-01-13T22:38:40.039
SparseArrays/allowscalar                         (8) |     0.13 |   0.00 |  0.0 |       7.62 |  3283.52
SparseArrays/ambiguous                           (8) |        started at 2023-01-13T22:38:40.174
      From worker 9:	┌ Error: Hint-handler string_concatenation_hint_handler for MethodError in Base caused an error
      From worker 9:	└ @ Base.Experimental experimental.jl:321
channels                                         (6) |    17.77 |   4.50 | 25.3 |     290.74 |  3692.92
SparseArrays/cholmod                             (6) |        started at 2023-01-13T22:38:41.490
sorting                                          (5) |    88.31 |   0.85 |  1.0 |    7545.82 |  5176.00
SparseArrays/fixed                               (5) |        started at 2023-01-13T22:38:43.029
SparseArrays/ambiguous                           (8) |     3.34 |   0.18 |  5.3 |     685.19 |  3304.33
SparseArrays/higherorderfns                      (8) |        started at 2023-01-13T22:38:43.517
missing                                          (9) |    14.41 |   0.40 |  2.8 |    1369.09 |  4037.91
SparseArrays/issues                              (9) |        started at 2023-01-13T22:38:46.181
SparseArrays/fixed                               (5) |     3.98 |   0.04 |  0.9 |     359.96 |  5176.00
SparseArrays/linalg                              (5) |        started at 2023-01-13T22:38:47.013
SparseArrays/cholmod                             (6) |    18.06 |   0.62 |  3.4 |    1878.75 |  3692.92
SparseArrays/linalg_solvers                      (6) |        started at 2023-01-13T22:38:59.551
download                                         (3) |    30.61 |   0.00 |  0.0 |       0.26 |  4090.80
SparseArrays/sparsematrix_constructors_indexing  (3) |        started at 2023-01-13T22:39:06.201
SparseArrays/linalg_solvers                      (6) |     8.18 |   0.15 |  1.9 |     473.45 |  3692.92
SparseArrays/sparsematrix_ops                    (6) |        started at 2023-01-13T22:39:07.731
SparseArrays/issues                              (9) |    29.52 |   1.24 |  4.2 |    3889.05 |  4037.91
SparseArrays/sparsevector                        (9) |        started at 2023-01-13T22:39:15.707
SparseArrays/linalg                              (5) |    42.07 |   0.40 |  0.9 |    3758.92 |  5371.53
SparseArrays/spqr                                (5) |        started at 2023-01-13T22:39:29.080
SparseArrays/spqr                                (5) |     4.39 |   0.05 |  1.1 |     429.12 |  5391.50
SparseArrays/umfpack                             (5) |        started at 2023-01-13T22:39:33.470
SparseArrays/sparsematrix_ops                    (6) |    27.90 |   0.54 |  1.9 |    2496.03 |  3692.92
LibGit2/online                                   (6) |        started at 2023-01-13T22:39:35.631
LibGit2/online                                   (6) |     1.88 |   0.00 |  0.0 |      34.27 |  3692.92
LibGit2/libgit2                                  (6) |        started at 2023-01-13T22:39:37.511
SparseArrays/higherorderfns                      (8) |    58.89 |   2.39 |  4.1 |    6410.78 |  3682.72
Dates/accessors                                  (8) |        started at 2023-01-13T22:39:42.408
Dates/accessors                                  (8) |     4.63 |   0.76 | 16.5 |    3305.58 |  3686.91
Dates/adjusters                                  (8) |        started at 2023-01-13T22:39:47.050
Dates/adjusters                                  (8) |     2.81 |   0.09 |  3.1 |     161.60 |  3710.94
Dates/query                                      (8) |        started at 2023-01-13T22:39:49.884
SparseArrays/umfpack                             (5) |    16.50 |   0.20 |  1.2 |    1488.45 |  5459.25
Dates/periods                                    (5) |        started at 2023-01-13T22:39:49.985
Dates/query                                      (8) |     0.52 |   0.00 |  0.0 |      32.05 |  3712.53
Dates/ranges                                     (8) |        started at 2023-01-13T22:39:50.421
Dates/periods                                    (5) |     9.37 |   0.19 |  2.1 |    1132.81 |  5506.80
Dates/rounding                                   (5) |        started at 2023-01-13T22:39:59.371
Dates/ranges                                     (8) |     9.38 |   0.24 |  2.6 |     815.46 |  3858.41
Dates/types                                      (8) |        started at 2023-01-13T22:39:59.809
Dates/rounding                                   (5) |     1.25 |   0.00 |  0.0 |      62.88 |  5515.56
Dates/io                                         (5) |        started at 2023-01-13T22:40:00.626
Dates/types                                      (8) |     0.86 |   0.02 |  2.7 |      63.63 |  3863.38
Dates/arithmetic                                 (8) |        started at 2023-01-13T22:40:00.671
      From worker 2:	libc++abi: terminating with uncaught exception of type std::__1::system_error: mutex lock failed: Invalid argument
      From worker 2:
      From worker 2:	[18344] signal (6): Abort trap: 6
      From worker 2:	in expression starting at none:0
      From worker 2:	libc++abi: terminate_handler unexpectedly threw an exception
Dates/arithmetic                                 (8) |     3.67 |   0.12 |  3.2 |     467.34 |  3876.28
Dates/conversions                                (8) |        started at 2023-01-13T22:40:04.338
Dates/conversions                                (8) |     0.52 |   0.00 |  0.0 |      26.77 |  3882.84
ArgTools                                         (8) |        started at 2023-01-13T22:40:04.861
Dates/io                                         (5) |     7.25 |   0.04 |  0.6 |     644.10 |  5553.75
Artifacts                                        (5) |        started at 2023-01-13T22:40:07.882
ArgTools                                         (8) |     4.53 |   0.16 |  3.6 |     688.75 |  3894.88
Base64                                           (8) |        started at 2023-01-13T22:40:09.397
Base64                                           (8) |     1.39 |   0.24 | 17.1 |    1504.06 |  3970.53
CRC32c                                           (8) |        started at 2023-01-13T22:40:10.814
CRC32c                                           (8) |     0.40 |   0.02 |  4.2 |      34.89 |  3970.53
CompilerSupportLibraries_jll                     (8) |        started at 2023-01-13T22:40:11.227
CompilerSupportLibraries_jll                     (8) |     0.00 |   0.00 |  0.0 |       0.25 |  3970.53
Downloads                                        (8) |        started at 2023-01-13T22:40:11.246
Artifacts                                        (5) |     3.49 |   0.06 |  1.7 |     162.47 |  5560.09
FileWatching                                     (5) |        started at 2023-01-13T22:40:11.387
cmdlineargs                                      (2) |         failed at 2023-01-13T22:40:28.945
Error During Test at /Volumes/ssd500/julia/test/cmdlineargs.jl:723
  Test threw exception
  Expression: readchomp(`$exename --sysimage-native-code=no -E
        "Bool(Base.JLOptions().use_sysimage_native_code)"`) == "false"
  failed process: Process(`/Volumes/ssd500/julia/usr/bin/julia -Cnative -J/Volumes/ssd500/julia/usr/lib/julia/sys.dylib --depwarn=error --check-bounds=yes -g1 --startup-file=no --startup-file=no --sysimage-native-code=no -E 'Bool(Base.JLOptions().use_sysimage_native_code)'`, ProcessSignaled(6)) [0]

  Stacktrace:
   [1] pipeline_error
     @ ./process.jl:565 [inlined]
   [2] read(cmd::Cmd)
     @ Base ./process.jl:449
   [3] read(cmd::Cmd, #unused#::Type{String})
     @ Base ./process.jl:458
   [4] readchomp(x::Cmd)
     @ Base ./io.jl:961
   [5] macro expansion
     @ /Volumes/ssd500/julia/usr/share/julia/stdlib/v1.10/Test/src/Test.jl:477 [inlined]
   [6] top-level scope
     @ /Volumes/ssd500/julia/test/cmdlineargs.jl:723

Future                                          (10) |        started at 2023-01-13T22:40:31.185
Future                                          (10) |     0.01 |   0.00 |  0.0 |       0.85 |   274.86
GMP_jll                                         (10) |        started at 2023-01-13T22:40:31.315
GMP_jll                                         (10) |     0.59 |   0.00 |  0.8 |      10.30 |   283.50
InteractiveUtils                                (10) |        started at 2023-01-13T22:40:31.910
LibGit2/libgit2                                  (6) |    62.71 |   0.35 |  0.6 |     990.32 |  3695.41
LLD_jll                                          (6) |        started at 2023-01-13T22:40:40.227
InteractiveUtils                                (10) |     8.57 |   0.13 |  1.5 |    1180.39 |   489.88
LLVMLibUnwind_jll                               (10) |        started at 2023-01-13T22:40:40.482
LLD_jll                                          (6) |     0.33 |   0.00 |  0.0 |       6.25 |  3695.84
LazyArtifacts                                    (6) |        started at 2023-01-13T22:40:40.561
LLVMLibUnwind_jll                               (10) |     0.26 |   0.00 |  0.0 |       0.62 |   490.02
LibCURL                                         (10) |        started at 2023-01-13T22:40:40.744
spawn                                            (7) |   204.07 |   0.03 |  0.0 |     378.15 |  3523.09
LibCURL_jll                                      (7) |        started at 2023-01-13T22:40:40.796
LibCURL_jll                                      (7) |     0.02 |   0.00 |  0.0 |       0.89 |  3523.34
LibGit2_jll                                      (7) |        started at 2023-01-13T22:40:40.818
LibGit2_jll                                      (7) |     0.87 |   0.00 |  0.0 |       7.57 |  3524.19
LibSSH2_jll                                      (7) |        started at 2023-01-13T22:40:41.688
LibSSH2_jll                                      (7) |     0.02 |   0.00 |  0.0 |       0.62 |  3524.22
LibUV_jll                                        (7) |        started at 2023-01-13T22:40:41.706
LazyArtifacts                                    (6) |     1.33 |   0.03 |  1.9 |      23.76 |  3697.98
LibUnwind_jll                                    (6) |        started at 2023-01-13T22:40:41.897
LibCURL                                         (10) |     1.16 |   0.00 |  0.0 |       6.69 |   494.39
Libdl                                           (10) |        started at 2023-01-13T22:40:41.905
LibUV_jll                                        (7) |     0.31 |   0.00 |  0.0 |       1.20 |  3524.45
Logging                                          (7) |        started at 2023-01-13T22:40:42.018
LibUnwind_jll                                    (6) |     0.25 |   0.00 |  0.0 |       0.52 |  3698.08
MPFR_jll                                         (6) |        started at 2023-01-13T22:40:42.144
Libdl                                           (10) |     0.46 |   0.00 |  0.0 |      23.36 |   500.02
Markdown                                        (10) |        started at 2023-01-13T22:40:42.365
MPFR_jll                                         (6) |     0.29 |   0.00 |  0.0 |       1.31 |  3698.34
MbedTLS_jll                                      (6) |        started at 2023-01-13T22:40:42.435
MbedTLS_jll                                      (6) |     0.02 |   0.00 |  0.0 |       1.97 |  3698.50
Mmap                                             (6) |        started at 2023-01-13T22:40:42.461
Logging                                          (7) |     0.93 |   0.03 |  3.3 |      73.02 |  3545.53
MozillaCACerts_jll                               (7) |        started at 2023-01-13T22:40:42.950
MozillaCACerts_jll                               (7) |     0.00 |   0.00 |  0.0 |       0.15 |  3545.55
NetworkOptions                                   (7) |        started at 2023-01-13T22:40:42.954
NetworkOptions                                   (7) |     0.59 |   0.00 |  0.0 |      53.60 |  3548.27
OpenBLAS_jll                                     (7) |        started at 2023-01-13T22:40:43.549
OpenBLAS_jll                                     (7) |     0.01 |   0.00 |  0.0 |       0.26 |  3548.34
OpenLibm_jll                                     (7) |        started at 2023-01-13T22:40:43.561
OpenLibm_jll                                     (7) |     0.26 |   0.00 |  0.0 |       1.16 |  3548.47
PCRE2_jll                                        (7) |        started at 2023-01-13T22:40:43.819
PCRE2_jll                                        (7) |     0.27 |   0.00 |  0.0 |       2.50 |  3548.61
Pkg                                              (7) |        started at 2023-01-13T22:40:44.089
      From worker 7:	[ Info: Installing HistoricalStdlibVersions for Pkg tests
      From worker 7:	  Installing known registries into `/Volumes/ssd500/juliabuildtemp`
Markdown                                        (10) |     2.28 |   0.04 |  1.7 |     296.99 |   516.22
Printf                                          (10) |        started at 2023-01-13T22:40:44.648
      From worker 7:	    Updating registry at `/Volumes/ssd500/juliabuildtemp/registries/General.toml`
      From worker 7:	   Resolving package versions...
      From worker 7:	   Installed HistoricalStdlibVersions ─ v1.2.0
      From worker 7:	    Updating `/Volumes/ssd500/juliabuildtemp/environments/v1.10/Project.toml`
      From worker 7:	  [6df8b67a] + HistoricalStdlibVersions v1.2.0
      From worker 7:	    Updating `/Volumes/ssd500/juliabuildtemp/environments/v1.10/Manifest.toml`
      From worker 7:	  [6df8b67a] + HistoricalStdlibVersions v1.2.0
      From worker 7:	Precompiling project...
      From worker 7:	  ✓ HistoricalStdlibVersions
      From worker 7:	  1 dependency successfully precompiled in 0 seconds
      From worker 7:	┌ Info: Pkg Server metadata:
      From worker 7:	│ HTTP/2 301
      From worker 7:	│ server: Varnish
      From worker 7:	│ retry-after: 0
      From worker 7:	│ location: https://us-east.pkg.julialang.org/
      From worker 7:	│ x-geo-continent: NA
      From worker 7:	│ x-geo-country: US
      From worker 7:	│ x-geo-region: CT
      From worker 7:	│ accept-ranges: bytes
      From worker 7:	│ date: Sat, 14 Jan 2023 03:40:47 GMT
      From worker 7:	│ via: 1.1 varnish
      From worker 7:	│ x-served-by: cache-bos4683-BOS
      From worker 7:	│ x-cache: HIT
      From worker 7:	│ x-cache-hits: 0
      From worker 7:	│ x-timer: S1673667648.913282,VS0,VE0
      From worker 7:	│ content-length: 0
      From worker 7:	│
      From worker 7:	│ HTTP/2 200
      From worker 7:	│ server: nginx/1.23.3
      From worker 7:	│ date: Sat, 14 Jan 2023 03:40:48 GMT
      From worker 7:	│ content-type: text/html
      From worker 7:	│ content-length: 402
      From worker 7:	│ accept-ranges: bytes
      From worker 7:	│ x-lb-strategy: pkgservers_roundrobin
      From worker 7:	└
      From worker 7:	[ Info: Pkg test output is silenced
Printf                                          (10) |     6.37 |   0.08 |  1.3 |     741.65 |   647.97
Profile                                         (10) |        started at 2023-01-13T22:40:51.023
      From worker 7:	[ Info: Downloading General registry from https://pkg.julialang.org/registry/23338594-aafe-5451-b93e-139f81909106/4cce0dd99953f5215adf450d75e5af59ee68aeb4
SparseArrays/sparsematrix_constructors_indexing  (3) |   109.82 |  46.51 | 42.3 |    6122.85 |  4419.86
REPL                                             (3) |        started at 2023-01-13T22:40:56.036
Mmap                                             (6) |    13.72 |  11.52 | 83.9 |     159.28 |  3698.77
Random                                           (6) |        started at 2023-01-13T22:40:56.182
floatfuncs                                       (4) |   163.12 |   6.45 |  4.0 |   55380.31 |  3578.73
SHA                                              (4) |        started at 2023-01-13T22:41:02.102
SparseArrays/sparsevector                        (9) |   113.85 |   2.98 |  2.6 |   13141.83 |  4557.59
Serialization                                    (9) |        started at 2023-01-13T22:41:09.664
REPL                                             (3) |    14.65 |   0.41 |  2.8 |    1685.21 |  4505.00
Sockets                                          (3) |        started at 2023-01-13T22:41:10.686
Serialization                                    (9) |     3.56 |   0.16 |  4.5 |     520.79 |  4572.89
Statistics                                       (9) |        started at 2023-01-13T22:41:13.229
Profile                                         (10) |    23.92 |   0.18 |  0.7 |    1320.19 |  1473.33
SuiteSparse                                     (10) |        started at 2023-01-13T22:41:14.952
Downloads                                        (8) |    63.85 |   0.37 |  0.6 |     198.41 |  3980.97
SuiteSparse_jll                                  (8) |        started at 2023-01-13T22:41:15.105
SuiteSparse                                     (10) |     0.25 |   0.00 |  0.0 |       0.50 |  1473.61
TOML                                            (10) |        started at 2023-01-13T22:41:15.205
Sockets                                          (3) |     4.53 |   0.02 |  0.4 |     151.26 |  4519.14
Tar                                              (3) |        started at 2023-01-13T22:41:15.224
SuiteSparse_jll                                  (8) |     0.68 |   0.00 |  0.0 |       7.31 |  3980.97
Test                                             (8) |        started at 2023-01-13T22:41:15.786
TOML                                            (10) |     7.87 |   0.10 |  1.3 |     978.27 |  1548.81
UUIDs                                           (10) |        started at 2023-01-13T22:41:23.076
UUIDs                                           (10) |     0.23 |   0.00 |  0.0 |      24.72 |  1548.81
Unicode                                         (10) |        started at 2023-01-13T22:41:23.304
Random                                           (6) |    27.89 |   1.64 |  5.9 |    2444.05 |  3898.28
Zlib_jll                                         (6) |        started at 2023-01-13T22:41:24.082
Zlib_jll                                         (6) |     0.30 |   0.00 |  0.0 |       1.41 |  3898.50
dSFMT_jll                                        (6) |        started at 2023-01-13T22:41:24.389
dSFMT_jll                                        (6) |     0.32 |   0.00 |  0.0 |       1.44 |  3898.64
libLLVM_jll                                      (6) |        started at 2023-01-13T22:41:24.711
libLLVM_jll                                      (6) |     0.30 |   0.00 |  0.0 |       0.54 |  3898.75
libblastrampoline_jll                            (6) |        started at 2023-01-13T22:41:25.013
libblastrampoline_jll                            (6) |     0.01 |   0.00 |  0.0 |       0.56 |  3898.81
nghttp2_jll                                      (6) |        started at 2023-01-13T22:41:25.025
nghttp2_jll                                      (6) |     0.02 |   0.00 |  0.0 |       1.26 |  3898.84
p7zip_jll                                        (6) |        started at 2023-01-13T22:41:25.051
p7zip_jll                                        (6) |     0.00 |   0.00 |  0.0 |       0.18 |  3898.84
      From worker 6:	libc++abi: terminating with uncaught exception of type std::__1::system_error: mutex lock failed: Invalid argument
      From worker 6:
      From worker 6:	[14007] signal (6): Abort trap: 6
      From worker 6:	in expression starting at none:0
      From worker 6:	libc++abi: terminate_handler unexpectedly threw an exception
Unicode                                         (10) |     2.20 |   0.02 |  0.8 |     264.03 |  1548.81
Tar                                              (3) |    17.05 |   0.70 |  4.1 |    5056.14 |  4597.91
Test                                             (8) |    19.91 |   0.11 |  0.5 |     514.50 |  4051.27
SHA                                              (4) |    39.99 |   0.07 |  0.2 |     437.28 |  3649.47
Statistics                                       (9) |    31.70 |   1.15 |  3.6 |    3502.04 |  4819.97
FileWatching                                     (5) |   107.97 |   4.54 |  4.2 |     217.40 |  5593.73
      From worker 7:	Base.Filesystem.temp_cleanup_purge(force = true): 5.220604 seconds (1.16 M allocations: 131.075 MiB)
Pkg                                              (7) |   585.03 |   5.41 |  0.9 |   26600.19 |  5152.12

Executing tests that run on node 1 only:
precompile                                       (1) |        started at 2023-01-13T22:50:29.425
precompile                                       (1) |    25.65 |   0.08 |  0.3 |     558.90 |   439.69
SharedArrays                                     (1) |        started at 2023-01-13T22:50:55.077
SharedArrays                                     (1) |    10.89 |   0.40 |  3.6 |     989.06 |   495.47
threads                                          (1) |        started at 2023-01-13T22:51:05.967
Test Summary:                     | Pass  Total  Time
Threads.Conditions must be locked |    5      5  0.0s
Test Summary:       | Pass  Total  Time
IntrusiveLinkedList |   72     72  0.1s
Test Summary:        | Pass  Total  Time
@spawn interpolation |   10     10  0.7s
Test Summary:        | Pass  Total  Time
@async interpolation |    8      8  0.0s
Test Summary:                   | Pass  Total  Time
spawn interpolation: macrocalls |    2      2  1.6s
Test Summary: | Pass  Total  Time
Co-schedule   |    1      1  0.0s
Test Summary:                 | Pass  Total  Time
Threads.foreach(f, ::Channel) |    7      7  1.3s
Test Summary:     | Pass  Total  Time
Task-local random |    4      4  0.1s
Test Summary: | Pass  Total  Time
Racy `@spawn` |    1      1  0.1s
Test Summary:   | Pass  Total  Time
package loading |    1      1  0.3s
Test Summary:                     | Pass  Total  Time
Threads.Conditions must be locked |    5      5  0.0s
Test Summary:       | Pass  Total  Time
IntrusiveLinkedList |   72     72  0.1s
Test Summary:        | Pass  Total  Time
@spawn interpolation |   10     10  0.7s
Test Summary:        | Pass  Total  Time
@async interpolation |    8      8  0.0s
Test Summary:                   | Pass  Total  Time
spawn interpolation: macrocalls |    2      2  1.6s
Test Summary: | Pass  Total  Time
Co-schedule   |    1      1  0.0s
Test Summary:                 | Pass  Total  Time
Threads.foreach(f, ::Channel) |    7      7  1.2s
Test Summary:     | Pass  Total  Time
Task-local random |    4      4  0.0s
Test Summary: | Pass  Total  Time
Racy `@spawn` |    1      1  0.1s
Test Summary:   | Pass  Total  Time
package loading |    1      1  0.1s
Test Summary:                     | Pass  Total  Time
Threads.Conditions must be locked |    5      5  0.0s
Test Summary:       | Pass  Total  Time
IntrusiveLinkedList |   72     72  0.1s
Test Summary:        | Pass  Total  Time
@spawn interpolation |   10     10  0.7s
Test Summary:        | Pass  Total  Time
@async interpolation |    8      8  0.0s
Test Summary:                   | Pass  Total  Time
spawn interpolation: macrocalls |    2      2  1.6s
Test Summary: | Pass  Total  Time
Co-schedule   |    1      1  0.0s
Test Summary:                 | Pass  Total  Time
Threads.foreach(f, ::Channel) |    7      7  1.3s
Test Summary:     | Pass  Total  Time
Task-local random |    4      4  0.0s
Test Summary: | Pass  Total  Time
Racy `@spawn` |    1      1  0.1s
Test Summary:   | Pass  Total  Time
package loading |    1      1  0.1s
Test Summary:                     | Pass  Total  Time
Threads.Conditions must be locked |    5      5  0.0s
Test Summary:       | Pass  Total  Time
IntrusiveLinkedList |   72     72  0.1s
Test Summary:        | Pass  Total  Time
@spawn interpolation |   10     10  0.7s
Test Summary:        | Pass  Total  Time
@async interpolation |    8      8  0.0s
Test Summary:                   | Pass  Total  Time
spawn interpolation: macrocalls |    2      2  1.6s
Test Summary: | Pass  Total  Time
Co-schedule   |    1      1  0.0s
Test Summary:                 | Pass  Total  Time
Threads.foreach(f, ::Channel) |    7      7  1.3s
Test Summary:     | Pass  Total  Time
Task-local random |    4      4  0.0s
Test Summary: | Pass  Total  Time
Racy `@spawn` |    1      1  0.1s
Test Summary:   | Pass  Total  Time
package loading |    1      1  0.1s
threads                                          (1) |    84.54 |   0.01 |  0.0 |      34.68 |   498.73
Distributed                                      (1) |        started at 2023-01-13T22:52:30.505
┌ Warning: Skipping a thread-unsafe test because `Threads.maxthreadid() > 1`
│   Threads.maxthreadid() = 5
└ @ Main /Volumes/ssd500/julia/usr/share/julia/stdlib/v1.10/Distributed/test/distributed_exec.jl:161
┌ Warning: Skipping a thread-unsafe test because `Threads.maxthreadid() > 1`
│   Threads.maxthreadid() = 5
└ @ Main /Volumes/ssd500/julia/usr/share/julia/stdlib/v1.10/Distributed/test/distributed_exec.jl:161
[ Info: SO_REUSEPORT is unsupported, skipping reuseport tests
      From worker 28:
      From worker 28:	[24338] signal (15): Terminated: 15
      From worker 28:	in expression starting at none:0
      From worker 28:	__psynch_cvwait at /usr/lib/system/libsystem_kernel.dylib (unknown line)
      From worker 28:	unknown function (ip: 0x0)
      From worker 28:	__psynch_cvwait at /usr/lib/system/libsystem_kernel.dylib (unknown line)
      From worker 28:	unknown function (ip: 0x0)
      From worker 28:	__psynch_cvwait at /usr/lib/system/libsystem_kernel.dylib (unknown line)
      From worker 28:	unknown function (ip: 0x0)
      From worker 28:	__psynch_cvwait at /usr/lib/system/libsystem_kernel.dylib (unknown line)
      From worker 28:	unknown function (ip: 0x0)
      From worker 28:	kevent at /usr/lib/system/libsystem_kernel.dylib (unknown line)
      From worker 28:	unknown function (ip: 0x0)
      From worker 28:	Allocations: 2623617 (Pool: 2621734; Big: 1883); GC: 4
┌ Warning: rmprocs: process 1 not removed
└ @ Distributed /Volumes/ssd500/julia/usr/share/julia/stdlib/v1.10/Distributed/src/cluster.jl:1049
Distributed                                      (1) |   115.52 |   0.00 |  0.0 |      30.77 |   500.36
stress                                           (1) |        started at 2023-01-13T22:54:26.024
(libuv) kqueue(): Too many open files
libc++abi: terminating with uncaught exception of type std::__1::system_error: mutex lock failed: Invalid argument

[24583] signal (6): Abort trap: 6
in expression starting at none:0
stress                                           (1) |     7.94 |   0.01 |  0.1 |      43.18 |   501.25

Test Summary:                                     |     Pass  Error  Broken     Total      Time
  Overall                                         | 40795213      1  352799  41148013  18m09.6s
    LinearAlgebra/special                         |     3675                     3675   1m43.2s
    LinearAlgebra/bidiag                          |     4824                     4824   1m46.6s
    LinearAlgebra/addmul                          |     4320                     4320   1m54.3s
    LinearAlgebra/blas                            |     1629                     1629     29.2s
    LinearAlgebra/dense                           |     8561                     8561   2m24.6s
    LinearAlgebra/diagonal                        |     2919                     2919   2m33.2s
    LinearAlgebra/cholesky                        |     2511                     2511     46.9s
    LinearAlgebra/qr                              |     4705                     4705     51.4s
    LinearAlgebra/uniformscaling                  |      446                      446     16.1s
    LinearAlgebra/symmetric                       |     2853                     2853   2m47.2s
    LinearAlgebra/matmul                          |     1496                     1496   2m57.3s
    LinearAlgebra/structuredbroadcast             |      670                      670     24.6s
    LinearAlgebra/hessenberg                      |      632                      632     25.0s
    LinearAlgebra/eigen                           |      951                      951     22.6s
    LinearAlgebra/svd                             |      606                      606     29.4s
    LinearAlgebra/tridiag                         |     1611                     1611     24.5s
    LinearAlgebra/adjtrans                        |      479                      479     14.7s
    LinearAlgebra/lu                              |     1380                     1380     54.3s
    LinearAlgebra/givens                          |     1991                     1991      4.6s
    LinearAlgebra/lapack                          |      802                      802     21.9s
    LinearAlgebra/ldlt                            |        8                        8      0.6s
    LinearAlgebra/generic                         |      648              1       649     16.6s
    LinearAlgebra/factorization                   |       80             16        96      2.3s
    compiler/datastructures                       |      295                      295      2.2s
    ambiguous                                     |      110              2       112      2.6s
    compiler/validation                           |       28                       28      0.2s
    compiler/effects                              |      560                      560      1.1s
    LinearAlgebra/pinv                            |      500                      500      6.1s
    LinearAlgebra/lq                              |     3098                     3098     27.7s
    compiler/irpasses                             |      252              4       256      2.7s
    compiler/ssair                                |      134                      134      3.9s
    compiler/contextual                           |       12                       12      1.6s
    compiler/inline                               |      284              2       286      3.2s
    compiler/codegen                              |      183                      183      6.7s
    LinearAlgebra/bunchkaufman                    |     5689                     5689     21.5s
    compiler/inference                            |     1305              5      1310     13.1s
    compiler/EscapeAnalysis/interprocedural       |       32              4        36      5.0s
    compiler/EscapeAnalysis/local                 |      347             21       368      8.0s
    strings/search                                |      876                      876      2.4s
    strings/io                                    |    12764                    12764      1.7s
    unicode/utf8                                  |       19                       19      0.1s
    strings/basic                                 |    87695                    87695      4.4s
    strings/types                                 |  2302691                  2302691      2.0s
    worlds                                        |      102                      102      1.2s
    compiler/AbstractInterpreter                  |       25                       25     12.5s
    strings/util                                  |     1152                     1152      5.5s
    keywordargs                                   |      151                      151      1.0s
    char                                          |     1639                     1639      1.2s
    triplequote                                   |       29                       29      0.0s
    intrinsics                                    |      309                      309      1.5s
    atomics                                       |     3448                     3448      8.0s
    subtype                                       |   338004             54    338058      7.0s
    iobuffer                                      |      209                      209      0.7s
    staged                                        |       70                       70      1.5s
    hashing                                       |    12519                    12519      7.7s
    dict                                          |   144450                   144450     14.3s
    tuple                                         |      670                      670      4.7s
    offsetarray                                   |      513              3       516     20.8s
    numbers                                       |  1584929              1   1584930     32.1s
    reduce                                        |     8602                     8602     10.9s
    LinearAlgebra/schur                           |      500                      500   1m16.4s
    simdloop                                      |      240                      240      1.0s
    vecelement                                    |      678                      678      3.8s
    intfuncs                                      |   228466                   228466     13.1s
    core                                          |  8445985              3   8445988     52.9s
    copy                                          |      556                      556      2.3s
    rational                                      |    98695              2     98697     13.8s
    LinearAlgebra/triangular                      |    37936                    37936   4m42.0s
    fastmath                                      |      946                      946      3.5s
    functional                                    |       98                       98      3.5s
    operators                                     |    13055                    13055      4.4s
    arrayops                                      |     2122              5      2127     56.8s
    path                                          |      373             12       385      0.6s
    math                                          |  1910302                  1910302     20.3s
    ordering                                      |       37                       37      3.1s
    reducedim                                     |     1225              6      1231     44.2s
    parse                                         |    16099                    16099      2.1s
    gmp                                           |     2445                     2445      3.2s
    ccall                                         |   165130              1    165131     12.2s
    backtrace                                     |       39              1        40      0.8s
    exceptions                                    |       70                       70      1.2s
    file                                          |     1074                     1074      4.1s
    loading                                       |   149821                   149821     16.8s
    version                                       |     2453                     2453      0.5s
    namedtuple                                    |      230                      230      1.9s
    abstractarray                                 |    55451          24806     80257   1m01.6s
    mpfr                                          |     1137              1      1138      8.7s
    read                                          |     3812                     3812     16.8s
    floatapprox                                   |       49                       49      0.7s
    complex                                       |     8480              2      8482      5.9s
    regex                                         |      147                      147      1.2s
    reflection                                    |      436                      436      3.7s
    iterators                                     |    86621                    86621     48.1s
    sysinfo                                       |        4                        4      0.1s
    env                                           |      203                      203      0.5s
    float16                                       |   762093                   762093      3.6s
    combinatorics                                 |      171                      171      3.5s
    mod2pi                                        |       80                       80      0.2s
    rounding                                      |   150016                   150016      2.7s
    euler                                         |       12                       12      0.6s
    client                                        |        5                        5      0.6s
    subarray                                      |   459022                   459022   2m06.0s
    errorshow                                     |      247                      247      4.2s
    goto                                          |       19                       19      0.0s
    llvmcall                                      |       20                       20      0.3s
    llvmcall2                                     |       20                       20      0.1s
    ryu                                           |    31217                    31217      1.0s
    some                                          |       72                       72      0.5s
    meta                                          |       69                       69      0.7s
    stacktraces                                   |       48                       48      0.9s
    docs                                          |      239                      239      2.6s
    broadcast                                     |      526                      526     36.1s
    binaryplatforms                               |      341                      341      3.2s
    show                                          |   128982              8    128990     18.1s
    sets                                          |     3779                     3779     16.3s
    enums                                         |      100                      100      1.9s
    bitarray                                      |   947368              8    947376   1m29.7s
    interpreter                                   |        3                        3      0.9s
    atexit                                        |       56                       56      5.6s
    bitset                                        |      200                      200      1.2s
    checked                                       |     1239                     1239      3.9s
    int                                           |   736488             40    736528      6.8s
    error                                         |       83                       83      1.3s
    boundscheck                                   |                              None      3.6s
    osutils                                       |       43                       43      0.0s
    ranges                                        | 12110916         327683  12438599     32.4s
    iostream                                      |       50                       50      0.7s
    secretbuffer                                  |       30                       30      0.8s
    specificity                                   |      175                      175      0.1s
    cartesian                                     |      349              3       352      4.1s
    syntax                                        |     1684              1      1685      4.7s
    misc                                          |  1282279                  1282279     26.1s
    corelogging                                   |      235                      235      2.4s
    reinterpretarray                              |      421                      421      9.3s
    smallarrayshrink                              |       36                       36      0.2s
    opaque_closure                                |       68              1        69      0.5s
    filesystem                                    |        6                        6      0.1s
    asyncmap                                      |      307                      307      6.7s
    SparseArrays/allowscalar                      |        9                        9      0.1s
    channels                                      |      258                      258     17.8s
    sorting                                       |    41426              9     41435   1m28.3s
    SparseArrays/ambiguous                        |        1                        1      3.3s
    missing                                       |      574              1       575     14.9s
    SparseArrays/fixed                            |       58                       58      4.0s
    SparseArrays/cholmod                          |      611                      611     18.1s
    download                                      |                              None     30.6s
    SparseArrays/linalg_solvers                   |      364                      364      8.2s
    SparseArrays/issues                           |      337                      337     29.5s
    SparseArrays/linalg                           |     4622                     4622     42.1s
    SparseArrays/spqr                             |      104                      104      4.4s
    SparseArrays/sparsematrix_ops                 |      663                      663     27.9s
    LibGit2/online                                |       10                       10      1.9s
    SparseArrays/higherorderfns                   |     7172              1      7173     58.9s
    Dates/accessors                               |  7723858                  7723858      4.6s
    Dates/adjusters                               |     3149                     3149      2.8s
    SparseArrays/umfpack                          |      345                      345     16.5s
    Dates/query                                   |     1004                     1004      0.5s
    Dates/periods                                 |      953                      953      9.4s
    Dates/ranges                                  |   350639                   350639      9.4s
    Dates/rounding                                |      315                      315      1.3s
    Dates/types                                   |      232                      232      0.9s
    Dates/arithmetic                              |      385                      385      3.7s
    Dates/conversions                             |      161                      161      0.5s
    Dates/io                                      |      361                      361      7.3s
    ArgTools                                      |      180                      180      4.5s
    Base64                                        |     2031                     2031      1.4s
    CRC32c                                        |      664                      664      0.4s
    CompilerSupportLibraries_jll                  |        5                        5      0.0s
    Artifacts                                     |     1453                     1453      3.5s
    cmdlineargs                                   |      266      1       5       272   2m16.2s
    Future                                        |                              None      0.5s
    GMP_jll                                       |        1                        1      0.6s
    LibGit2/libgit2                               |      758                      758   1m02.7s
    InteractiveUtils                              |      299                      299      8.6s
    LLD_jll                                       |        2                        2      0.3s
    LLVMLibUnwind_jll                             |        7                        7      0.3s
    spawn                                         |      252              4       256   3m24.1s
    LibCURL_jll                                   |        1                        1      0.0s
    LibGit2_jll                                   |        2                        2      0.9s
    LibSSH2_jll                                   |                              None      0.0s
    LazyArtifacts                                 |        4                        4      1.3s
    LibCURL                                       |        6                        6      1.2s
    LibUV_jll                                     |        1                        1      0.3s
    LibUnwind_jll                                 |                              None      0.2s
    Libdl                                         |       81              1        82      0.5s
    MPFR_jll                                      |        1                        1      0.3s
    MbedTLS_jll                                   |        1                        1      0.0s
    Logging                                       |       40                       40      0.9s
    MozillaCACerts_jll                            |        1                        1      0.0s
    NetworkOptions                                |     3518                     3518      0.6s
    OpenBLAS_jll                                  |        1                        1      0.0s
    OpenLibm_jll                                  |        1                        1      0.3s
    PCRE2_jll                                     |        2                        2      0.3s
    Markdown                                      |      258                      258      2.3s
    Printf                                        |     1017                     1017      6.4s
    SparseArrays/sparsematrix_constructors_indexing |     2002                     2002   1m49.8s
    Mmap                                          |      140                      140     13.7s
    floatfuncs                                    |      232                      232   2m43.1s
    SparseArrays/sparsevector                     |    10509              4     10513   1m53.9s
    REPL                                          |     1595              3      1598     14.7s
    Serialization                                 |      131              1       132      3.6s
    Profile                                       |      116                      116     23.9s
    Downloads                                     |      238                      238   1m03.9s
    SuiteSparse                                   |                              None      0.3s
    Sockets                                       |      172                      172      4.5s
    SuiteSparse_jll                               |        1                        1      0.7s
    TOML                                          |      623             45       668      7.9s
    UUIDs                                         |     1029                     1029      0.2s
    Random                                        |   204840                   204840     27.9s
    Zlib_jll                                      |        1                        1      0.3s
    dSFMT_jll                                     |        1                        1      0.3s
    libLLVM_jll                                   |        1                        1      0.3s
    libblastrampoline_jll                         |        1                        1      0.0s
    nghttp2_jll                                   |        1                        1      0.0s
    p7zip_jll                                     |        1                        1      0.0s
    Unicode                                       |      795                      795      2.2s
    Tar                                           |     3225             11      3236     17.1s
    Test                                          |      458             17       475     19.9s
    SHA                                           |      107                      107     40.0s
    Statistics                                    |      810                      810     31.7s
    FileWatching                                  |      562                      562   1m48.0s
    Pkg                                           |     3122              1      3123   9m45.1s
    precompile                                    |      228                      228     25.8s
    SharedArrays                                  |      114                      114     10.9s
    threads                                       |       40                       40   1m24.5s
    Distributed                                   |       15                       15   1m55.5s
    stress                                        |      118                      118      7.9s
    FAILURE

The global RNG seed was 0xe073256718fd30ea61eb0a02d61dfad9.

Error in testset cmdlineargs:
Error During Test at /Volumes/ssd500/julia/test/cmdlineargs.jl:723
  Test threw exception
  Expression: readchomp(`$exename --sysimage-native-code=no -E
        "Bool(Base.JLOptions().use_sysimage_native_code)"`) == "false"
  failed process: Process(`/Volumes/ssd500/julia/usr/bin/julia -Cnative -J/Volumes/ssd500/julia/usr/lib/julia/sys.dylib --depwarn=error --check-bounds=yes -g1 --startup-file=no --startup-file=no --sysimage-native-code=no -E 'Bool(Base.JLOptions().use_sysimage_native_code)'`, ProcessSignaled(6)) [0]

  Stacktrace:
   [1] pipeline_error
     @ ./process.jl:565 [inlined]
   [2] read(cmd::Cmd)
     @ Base ./process.jl:449
   [3] read(cmd::Cmd, #unused#::Type{String})
     @ Base ./process.jl:458
   [4] readchomp(x::Cmd)
     @ Base ./io.jl:961
   [5] macro expansion
     @ /Volumes/ssd500/julia/usr/share/julia/stdlib/v1.10/Test/src/Test.jl:477 [inlined]
   [6] top-level scope
     @ /Volumes/ssd500/julia/test/cmdlineargs.jl:723
ERROR: LoadError: Test run finished with errors
in expression starting at /Volumes/ssd500/julia/test/runtests.jl:93
gmake[1]: *** [Makefile:25: all] Error 1
gmake: *** [Makefile:620: testall] Error 2

@George9000
Copy link
Contributor

This is now a persistent, reproducible error on macos ARM starting from 428d242 and continuing to all subsequent commits. If the test in question, line 723 and following in cmdlineargs.jl is run independently in the REPL of the newly built julia, it passes. See end of details section below.

details from build and testall of commit 1bfdf98755

details
julia> versioninfo()
Julia Version 1.10.0-DEV.370
Commit 1bfdf98755 (2023-01-15 21:24 UTC)
Platform Info:
  OS: macOS (arm64-apple-darwin21.6.0)
  CPU: 10 × Apple M1 Max
  WORD_SIZE: 64
  LIBM: libopenlibm
  LLVM: libLLVM-14.0.6 (ORCJIT, apple-m1)
  Threads: 5 on 8 virtual cores
Environment:
  JULIA_NUM_THREADS = 4,1
  JULIA_DEPOT_PATH = /Volumes/ssd500/juliabuildtemp



Sysimage built. Summary:
Base ────────  14.601313 seconds 41.3117%
Stdlibs ─────  20.742156 seconds 58.6861%
Total ───────  35.344241 seconds
    JULIA usr/lib/julia/sys-o.a
Collecting and executing precompile statements
└ Collect (Basic: ✓ 768, REPL 40/40: ✓ 1748) => Execute ✓ 1840
Precompilation complete. Summary:
Total ───────  46.703346 seconds
Outputting sysimage file...
Output ──────  73.281103 seconds
    LINK usr/lib/julia/sys.dylib
    CC usr/lib/libccalltest.dylib
    CC usr/lib/libllvmcalltest.dylib


% gmake testall                                                                                                                                                                                                                                                                                                         18:54
Whitespace check found no issues.
cp /Volumes/ssd500/julia/usr/lib/julia/sys.dylib /Volumes/ssd500/julia/local.dylib
/Volumes/ssd500/julia/usr/bin/julia -J /Volumes/ssd500/julia/local.dylib -e 'true'
rm /Volumes/ssd500/julia/local.dylib
    JULIA test/all
Running parallel tests with:
  nworkers() = 8
  nthreads() = 4
  Sys.CPU_THREADS = 8
  Sys.total_memory() = 64.000 GiB
  Sys.free_memory() = 39.446 GiB

Test                                        (Worker) | Time (s) | GC (s) | GC % | Alloc (MB) | RSS (MB)
LinearAlgebra/dense                              (5) |        started at 2023-01-15T18:56:13.689
LinearAlgebra/special                            (8) |        started at 2023-01-15T18:56:13.750
LinearAlgebra/bidiag                             (9) |        started at 2023-01-15T18:56:13.794
LinearAlgebra/diagonal                           (7) |        started at 2023-01-15T18:56:13.795
LinearAlgebra/symmetric                          (6) |        started at 2023-01-15T18:56:13.795
LinearAlgebra/matmul                             (4) |        started at 2023-01-15T18:56:13.795
LinearAlgebra/triangular                         (3) |        started at 2023-01-15T18:56:13.795
LinearAlgebra/addmul                             (2) |        started at 2023-01-15T18:56:13.796
LinearAlgebra/special                            (8) |   100.89 |   2.06 |  2.0 |   15136.05 |  1174.86
LinearAlgebra/qr                                 (8) |        started at 2023-01-15T18:57:54.819
LinearAlgebra/bidiag                             (9) |   103.82 |   2.54 |  2.5 |   13480.65 |  1183.23
LinearAlgebra/cholesky                           (9) |        started at 2023-01-15T18:57:57.697
LinearAlgebra/dense                              (5) |   141.82 |   5.73 |  4.0 |   18520.78 |  2155.14
LinearAlgebra/blas                               (5) |        started at 2023-01-15T18:58:35.688
LinearAlgebra/diagonal                           (7) |   149.91 |   7.01 |  4.7 |   20081.00 |  2309.56
LinearAlgebra/lu                                 (7) |        started at 2023-01-15T18:58:43.764
LinearAlgebra/cholesky                           (9) |    46.98 |   1.59 |  3.4 |    5377.93 |  1414.08
LinearAlgebra/uniformscaling                     (9) |        started at 2023-01-15T18:58:44.702
LinearAlgebra/qr                                 (8) |    51.44 |   2.67 |  5.2 |   11747.38 |  1625.47
LinearAlgebra/structuredbroadcast                (8) |        started at 2023-01-15T18:58:46.262
LinearAlgebra/symmetric                          (6) |   162.87 |   5.87 |  3.6 |   19801.26 |  1975.45
LinearAlgebra/hessenberg                         (6) |        started at 2023-01-15T18:58:56.712
LinearAlgebra/blas                               (5) |    23.27 |   0.58 |  2.5 |    2452.86 |  2675.06
LinearAlgebra/svd                                (5) |        started at 2023-01-15T18:58:58.967
LinearAlgebra/matmul                             (4) |   170.80 |   5.80 |  3.4 |   22882.39 |  1642.19
LinearAlgebra/eigen                              (4) |        started at 2023-01-15T18:59:04.646
LinearAlgebra/structuredbroadcast                (8) |    22.71 |   1.11 |  4.9 |    3476.61 |  1783.73
LinearAlgebra/tridiag                            (8) |        started at 2023-01-15T18:59:08.981
LinearAlgebra/uniformscaling                     (9) |    31.30 |   1.60 |  5.1 |    4119.45 |  1995.42
LinearAlgebra/lapack                             (9) |        started at 2023-01-15T18:59:16.026
LinearAlgebra/hessenberg                         (6) |    25.89 |   1.09 |  4.2 |    3223.82 |  2146.12
LinearAlgebra/lq                                 (6) |        started at 2023-01-15T18:59:22.612
LinearAlgebra/svd                                (5) |    24.32 |   0.81 |  3.3 |    3116.25 |  2838.70
LinearAlgebra/adjtrans                           (5) |        started at 2023-01-15T18:59:23.294
LinearAlgebra/lapack                             (9) |    15.30 |   0.54 |  3.5 |    1591.12 |  2126.23
LinearAlgebra/generic                            (9) |        started at 2023-01-15T18:59:31.357
LinearAlgebra/lu                                 (7) |    49.19 |   2.32 |  4.7 |    5901.69 |  2757.52
LinearAlgebra/schur                              (7) |        started at 2023-01-15T18:59:32.958
LinearAlgebra/tridiag                            (8) |    24.37 |   1.00 |  4.1 |    2873.58 |  1955.89
LinearAlgebra/bunchkaufman                       (8) |        started at 2023-01-15T18:59:33.368
LinearAlgebra/adjtrans                           (5) |    14.78 |   0.56 |  3.8 |    2068.66 |  2986.09
LinearAlgebra/givens                             (5) |        started at 2023-01-15T18:59:38.093
LinearAlgebra/eigen                              (4) |    33.78 |   1.40 |  4.2 |    4215.95 |  1906.59
LinearAlgebra/pinv                               (4) |        started at 2023-01-15T18:59:38.429
LinearAlgebra/givens                             (5) |     3.34 |   0.12 |  3.6 |     415.08 |  3002.72
LinearAlgebra/factorization                      (5) |        started at 2023-01-15T18:59:41.443
LinearAlgebra/factorization                      (5) |     1.85 |   0.07 |  4.0 |     224.53 |  3017.06
LinearAlgebra/ldlt                               (5) |        started at 2023-01-15T18:59:43.303
LinearAlgebra/ldlt                               (5) |     0.42 |   0.00 |  0.0 |      51.51 |  3019.25
ambiguous                                        (5) |        started at 2023-01-15T18:59:43.730
      From worker 5:	WARNING: method definition for ambig_with_bounds at /Volumes/ssd500/julia/test/ambiguous.jl:49 declares type variable S but does not use it.
      From worker 5:	WARNING: method definition for ambig_with_bounds at /Volumes/ssd500/julia/test/ambiguous.jl:50 declares type variable S but does not use it.
LinearAlgebra/pinv                               (4) |     6.77 |   0.48 |  7.1 |    1505.29 |  2186.78
compiler/datastructures                          (4) |        started at 2023-01-15T18:59:45.209
      From worker 5:	WARNING: method definition for f11407 at /Volumes/ssd500/julia/test/ambiguous.jl:380 declares type variable V but does not use it.
      From worker 5:	WARNING: method definition for f11407 at /Volumes/ssd500/julia/test/ambiguous.jl:380 declares type variable K but does not use it.
      From worker 5:	WARNING: method definition for stripType at /Volumes/ssd500/julia/test/ambiguous.jl:395 declares type variable T but does not use it.
ambiguous                                        (5) |     2.65 |   0.12 |  4.5 |     432.46 |  3026.89
compiler/inference                               (5) |        started at 2023-01-15T18:59:46.387
LinearAlgebra/generic                            (9) |    15.90 |   0.64 |  4.0 |    1611.96 |  2388.22
compiler/effects                                 (9) |        started at 2023-01-15T18:59:47.273
compiler/datastructures                          (4) |     2.08 |   0.06 |  2.7 |     237.86 |  2198.81
compiler/validation                              (4) |        started at 2023-01-15T18:59:47.288
compiler/validation                              (4) |     0.22 |   0.00 |  0.0 |      20.67 |  2200.38
compiler/ssair                                   (4) |        started at 2023-01-15T18:59:47.514
compiler/effects                                 (9) |     1.06 |   0.04 |  4.0 |     116.69 |  2402.36
compiler/irpasses                                (9) |        started at 2023-01-15T18:59:48.343
compiler/irpasses                                (9) |     2.55 |   0.06 |  2.5 |     276.02 |  2422.78
compiler/codegen                                 (9) |        started at 2023-01-15T18:59:50.910
compiler/ssair                                   (4) |     3.92 |   0.11 |  2.8 |     296.33 |  2221.47
compiler/inline                                  (4) |        started at 2023-01-15T18:59:51.436
LinearAlgebra/bunchkaufman                       (8) |    19.19 |   0.87 |  4.5 |    2512.58 |  2131.95
compiler/contextual                              (8) |        started at 2023-01-15T18:59:52.560
LinearAlgebra/lq                                 (6) |    30.58 |   2.29 |  7.5 |   10339.45 |  2551.89
compiler/AbstractInterpreter                     (6) |        started at 2023-01-15T18:59:53.204
compiler/contextual                              (8) |     1.59 |   0.03 |  2.1 |      69.05 |  2138.38
compiler/EscapeAnalysis/local                    (8) |        started at 2023-01-15T18:59:54.153
compiler/inline                                  (4) |     2.83 |   0.26 |  9.0 |     195.91 |  2235.20
compiler/EscapeAnalysis/interprocedural          (4) |        started at 2023-01-15T18:59:54.268
compiler/codegen                                 (9) |     6.59 |   0.99 | 15.1 |     175.69 |  2433.83
subarray                                         (9) |        started at 2023-01-15T18:59:57.508
compiler/EscapeAnalysis/interprocedural          (4) |     4.93 |   0.13 |  2.5 |     359.92 |  2251.91
strings/basic                                    (4) |        started at 2023-01-15T18:59:59.207
compiler/inference                               (5) |    12.91 |   0.34 |  2.6 |    1119.56 |  3110.66
strings/search                                   (5) |        started at 2023-01-15T18:59:59.302
strings/search                                   (5) |     2.49 |   0.05 |  2.1 |     160.76 |  3121.30
strings/util                                     (5) |        started at 2023-01-15T19:00:01.802
compiler/EscapeAnalysis/local                    (8) |     8.24 |   0.25 |  3.1 |     600.42 |  2179.11
strings/io                                       (8) |        started at 2023-01-15T19:00:02.422
strings/basic                                    (4) |     4.38 |   0.09 |  1.9 |     385.66 |  2292.23
strings/types                                    (4) |        started at 2023-01-15T19:00:03.593
strings/io                                       (8) |     1.68 |   0.09 |  5.3 |     200.51 |  2200.09
unicode/utf8                                     (8) |        started at 2023-01-15T19:00:04.108
unicode/utf8                                     (8) |     0.07 |   0.00 |  0.0 |       3.43 |  2200.31
core                                             (8) |        started at 2023-01-15T19:00:04.182
strings/types                                    (4) |     1.81 |   0.15 |  8.2 |    1002.42 |  2294.59
worlds                                           (4) |        started at 2023-01-15T19:00:05.405
compiler/AbstractInterpreter                     (6) |    12.75 |   0.33 |  2.6 |     756.90 |  2594.69
atomics                                          (6) |        started at 2023-01-15T19:00:05.958
worlds                                           (4) |     1.11 |   0.03 |  2.9 |      97.89 |  2300.55
keywordargs                                      (4) |        started at 2023-01-15T19:00:06.516
strings/util                                     (5) |     5.50 |   0.29 |  5.2 |     869.27 |  3206.59
numbers                                          (5) |        started at 2023-01-15T19:00:07.301
keywordargs                                      (4) |     0.93 |   0.01 |  1.4 |      81.77 |  2306.77
subtype                                          (4) |        started at 2023-01-15T19:00:07.445
atomics                                          (6) |     8.08 |   0.96 | 11.8 |    2714.62 |  2688.77
char                                             (6) |        started at 2023-01-15T19:00:14.057
subtype                                          (4) |     7.00 |   0.25 |  3.5 |    1497.17 |  2510.12
triplequote                                      (4) |        started at 2023-01-15T19:00:14.448
triplequote                                      (4) |     0.02 |   0.00 |  0.0 |       0.50 |  2510.12
intrinsics                                       (4) |        started at 2023-01-15T19:00:14.471
char                                             (6) |     1.19 |   0.05 |  4.1 |     119.41 |  2695.27
dict                                             (6) |        started at 2023-01-15T19:00:15.270
intrinsics                                       (4) |     1.42 |   0.02 |  1.4 |     147.83 |  2510.12
hashing                                          (4) |        started at 2023-01-15T19:00:15.889
hashing                                          (4) |     7.70 |   0.17 |  2.1 |    1109.13 |  2531.84
iobuffer                                         (4) |        started at 2023-01-15T19:00:23.601
iobuffer                                         (4) |     0.69 |   0.00 |  0.0 |      63.23 |  2536.47
staged                                           (4) |        started at 2023-01-15T19:00:24.293
staged                                           (4) |     1.27 |   0.02 |  1.8 |     183.45 |  2544.66
offsetarray                                      (4) |        started at 2023-01-15T19:00:25.567
dict                                             (6) |    14.05 |   1.29 |  9.2 |    1706.06 |  2815.69
arrayops                                         (6) |        started at 2023-01-15T19:00:29.334
      From worker 8:	WARNING: method definition for bad_tvars at /Volumes/ssd500/julia/test/core.jl:5246 declares type variable T but does not use it.
      From worker 8:	WARNING: method definition for bad_tvars2 at /Volumes/ssd500/julia/test/core.jl:5249 declares type variable T but does not use it.
numbers                                          (5) |    31.82 |   0.66 |  2.1 |    3502.25 |  3767.86
tuple                                            (5) |        started at 2023-01-15T19:00:39.136
tuple                                            (5) |     4.54 |   0.13 |  2.8 |     582.87 |  3789.88
reduce                                           (5) |        started at 2023-01-15T19:00:43.686
offsetarray                                      (4) |    20.69 |   0.46 |  2.2 |    2897.57 |  2668.30
reducedim                                        (4) |        started at 2023-01-15T19:00:46.271
LinearAlgebra/schur                              (7) |    76.69 |   0.62 |  0.8 |    1308.49 |  2823.27
abstractarray                                    (7) |        started at 2023-01-15T19:00:49.666
LinearAlgebra/triangular                         (3) |   276.70 |  10.17 |  3.7 |   34861.43 |  3496.22
intfuncs                                         (3) |        started at 2023-01-15T19:00:50.548
reduce                                           (5) |    11.11 |   0.30 |  2.7 |    1587.92 |  4076.02
simdloop                                         (5) |        started at 2023-01-15T19:00:54.806
simdloop                                         (5) |     0.81 |   0.00 |  0.0 |      90.11 |  4080.02
vecelement                                       (5) |        started at 2023-01-15T19:00:55.617
core                                             (8) |    51.77 |  13.59 | 26.3 |   12294.96 |  4603.34
rational                                         (8) |        started at 2023-01-15T19:00:56.495
vecelement                                       (5) |     3.81 |   0.05 |  1.2 |     325.34 |  4105.31
bitarray                                         (5) |        started at 2023-01-15T19:00:59.461
rational                                         (8) |    13.87 |   0.14 |  1.0 |    1175.68 |  4603.34
copy                                             (8) |        started at 2023-01-15T19:01:10.392
copy                                             (8) |     1.74 |   0.00 |  0.0 |     204.66 |  4603.34
math                                             (8) |        started at 2023-01-15T19:01:12.145
intfuncs                                         (3) |    22.68 |   0.13 |  0.6 |     412.03 |  3567.69
fastmath                                         (3) |        started at 2023-01-15T19:01:13.231
fastmath                                         (3) |     3.49 |   0.07 |  2.1 |     230.39 |  3596.27
functional                                       (3) |        started at 2023-01-15T19:01:16.741
functional                                       (3) |     3.30 |   0.13 |  4.0 |     537.37 |  3615.27
iterators                                        (3) |        started at 2023-01-15T19:01:20.051
arrayops                                         (6) |    57.04 |   2.38 |  4.2 |    8523.06 |  3224.23
operators                                        (6) |        started at 2023-01-15T19:01:26.472
reducedim                                        (4) |    44.31 |   0.73 |  1.6 |    5063.82 |  2928.39
ordering                                         (4) |        started at 2023-01-15T19:01:30.598
operators                                        (6) |     4.14 |   0.13 |  3.2 |     596.31 |  3250.12
path                                             (6) |        started at 2023-01-15T19:01:30.627
path                                             (6) |     0.63 |   0.02 |  3.2 |      75.70 |  3253.22
ccall                                            (6) |        started at 2023-01-15T19:01:31.277
ordering                                         (4) |     3.09 |   0.03 |  1.0 |     299.11 |  2944.14
parse                                            (4) |        started at 2023-01-15T19:01:33.697
parse                                            (4) |     1.79 |   0.03 |  1.6 |     175.89 |  2952.70
loading                                          (4) |        started at 2023-01-15T19:01:35.506
math                                             (8) |    27.54 |   0.53 |  1.9 |    3596.79 |  4603.34
gmp                                              (8) |        started at 2023-01-15T19:01:39.699
gmp                                              (8) |     2.48 |   0.03 |  1.3 |     223.12 |  4603.34
sorting                                          (8) |        started at 2023-01-15T19:01:42.184
ccall                                            (6) |    12.41 |   0.34 |  2.7 |     430.66 |  3297.19
spawn                                            (6) |        started at 2023-01-15T19:01:43.695
      From worker 6:	       [stdio passthrough ok]
abstractarray                                    (7) |    65.41 |   3.63 |  5.5 |    8027.41 |  3280.00
backtrace                                        (7) |        started at 2023-01-15T19:01:59.275
backtrace                                        (7) |     1.53 |   0.06 |  3.7 |     118.11 |  3353.50
exceptions                                       (7) |        started at 2023-01-15T19:02:00.838
exceptions                                       (7) |     1.25 |   0.38 | 30.3 |      26.69 |  3354.78
file                                             (7) |        started at 2023-01-15T19:02:02.093
subarray                                         (9) |   126.31 |   3.99 |  3.2 |   18197.75 |  3679.50
read                                             (9) |        started at 2023-01-15T19:02:03.822
file                                             (7) |     4.73 |   0.08 |  1.7 |     309.99 |  3373.08
version                                          (7) |        started at 2023-01-15T19:02:06.827
version                                          (7) |     0.57 |   0.01 |  1.9 |      47.62 |  3379.97
namedtuple                                       (7) |        started at 2023-01-15T19:02:07.404
iterators                                        (3) |    48.52 |   2.14 |  4.4 |    8671.14 |  4000.58
mpfr                                             (3) |        started at 2023-01-15T19:02:08.578
namedtuple                                       (7) |     1.74 |   0.05 |  3.0 |     167.85 |  3392.27
broadcast                                        (7) |        started at 2023-01-15T19:02:09.147
loading                                          (4) |    34.83 |   0.31 |  0.9 |    2277.95 |  2973.47
complex                                          (4) |        started at 2023-01-15T19:02:10.342
complex                                          (4) |     6.10 |   0.08 |  1.3 |     417.95 |  3025.83
floatapprox                                      (4) |        started at 2023-01-15T19:02:16.441
mpfr                                             (3) |     8.34 |   0.17 |  2.0 |    1446.75 |  4167.95
reflection                                       (3) |        started at 2023-01-15T19:02:16.919
floatapprox                                      (4) |     0.57 |   0.00 |  0.0 |      62.12 |  3028.95
regex                                            (4) |        started at 2023-01-15T19:02:17.018
regex                                            (4) |     1.20 |   0.03 |  2.2 |     115.51 |  3034.09
float16                                          (4) |        started at 2023-01-15T19:02:18.222
reflection                                       (3) |     3.87 |   0.07 |  1.8 |     450.37 |  4182.53
combinatorics                                    (3) |        started at 2023-01-15T19:02:20.788
read                                             (9) |    17.30 |   0.68 |  3.9 |    3625.88 |  4865.59
sysinfo                                          (9) |        started at 2023-01-15T19:02:21.133
sysinfo                                          (9) |     0.06 |   0.00 |  0.0 |       7.12 |  4865.59
env                                              (9) |        started at 2023-01-15T19:02:21.196
float16                                          (4) |     3.32 |   0.16 |  4.9 |    1326.00 |  3041.62
rounding                                         (4) |        started at 2023-01-15T19:02:21.548
env                                              (9) |     0.53 |   0.00 |  0.0 |      29.20 |  4865.59
ranges                                           (9) |        started at 2023-01-15T19:02:21.725
rounding                                         (4) |     2.54 |   0.04 |  1.7 |     331.75 |  3054.52
mod2pi                                           (4) |        started at 2023-01-15T19:02:24.095
combinatorics                                    (3) |     3.35 |   0.13 |  4.0 |     990.92 |  4249.92
euler                                            (3) |        started at 2023-01-15T19:02:24.144
mod2pi                                           (4) |     0.23 |   0.00 |  0.0 |      14.90 |  3056.05
show                                             (4) |        started at 2023-01-15T19:02:24.330
euler                                            (3) |     0.54 |   0.03 |  5.7 |     100.51 |  4257.70
client                                           (3) |        started at 2023-01-15T19:02:24.683
client                                           (3) |     0.71 |   0.00 |  0.0 |      69.82 |  4277.11
errorshow                                        (3) |        started at 2023-01-15T19:02:25.394
errorshow                                        (3) |     5.23 |   0.06 |  1.2 |     352.00 |  4294.58
sets                                             (3) |        started at 2023-01-15T19:02:30.622
bitarray                                         (5) |   100.25 |   1.41 |  1.4 |   11593.23 |  5127.58
goto                                             (5) |        started at 2023-01-15T19:02:39.710
goto                                             (5) |     0.04 |   0.00 |  0.0 |       0.87 |  5127.88
llvmcall                                         (5) |        started at 2023-01-15T19:02:39.748
show                                             (4) |    15.76 |   0.26 |  1.7 |    1835.75 |  3167.22
llvmcall2                                        (4) |        started at 2023-01-15T19:02:40.088
llvmcall                                         (5) |     0.41 |   0.00 |  0.0 |      47.09 |  5129.55
ryu                                              (5) |        started at 2023-01-15T19:02:40.157
llvmcall2                                        (4) |     0.07 |   0.00 |  0.0 |       3.27 |  3168.36
some                                             (4) |        started at 2023-01-15T19:02:40.159
some                                             (4) |     0.54 |   0.03 |  6.1 |      68.39 |  3171.53
meta                                             (4) |        started at 2023-01-15T19:02:40.699
ryu                                              (5) |     0.89 |   0.00 |  0.0 |      47.85 |  5130.67
stacktraces                                      (5) |        started at 2023-01-15T19:02:41.046
meta                                             (4) |     0.49 |   0.00 |  0.0 |      29.66 |  3189.50
docs                                             (4) |        started at 2023-01-15T19:02:41.193
stacktraces                                      (5) |     1.10 |   0.00 |  0.0 |     117.58 |  5135.70
misc                                             (5) |        started at 2023-01-15T19:02:42.149
docs                                             (4) |     2.36 |   0.06 |  2.7 |     371.35 |  3203.33
binaryplatforms                                  (4) |        started at 2023-01-15T19:02:43.559
broadcast                                        (7) |    36.10 |   1.46 |  4.0 |    4045.86 |  3521.52
atexit                                           (7) |        started at 2023-01-15T19:02:45.251
binaryplatforms                                  (4) |     2.61 |   0.08 |  2.9 |     295.20 |  3219.44
enums                                            (4) |        started at 2023-01-15T19:02:46.174
sets                                             (3) |    16.05 |   0.27 |  1.7 |    1279.24 |  4383.73
cmdlineargs                                      (3) |        started at 2023-01-15T19:02:46.675
enums                                            (4) |     1.73 |   0.03 |  1.8 |     196.72 |  3228.94
int                                              (4) |        started at 2023-01-15T19:02:47.909
atexit                                           (7) |     4.83 |   0.00 |  0.0 |      11.36 |  3522.11
interpreter                                      (7) |        started at 2023-01-15T19:02:50.086
interpreter                                      (7) |     0.65 |   0.00 |  0.0 |       5.51 |  3522.86
checked                                          (7) |        started at 2023-01-15T19:02:50.734
ranges                                           (9) |    31.28 |   1.25 |  4.0 |    8340.55 |  4865.59
bitset                                           (9) |        started at 2023-01-15T19:02:53.013
int                                              (4) |     6.07 |   0.11 |  1.9 |     544.18 |  3275.45
floatfuncs                                       (4) |        started at 2023-01-15T19:02:53.983
bitset                                           (9) |     1.30 |   0.00 |  0.0 |     110.15 |  4865.59
boundscheck                                      (9) |        started at 2023-01-15T19:02:54.319
checked                                          (7) |     3.85 |   0.10 |  2.7 |     314.05 |  3588.27
error                                            (7) |        started at 2023-01-15T19:02:54.582
error                                            (7) |     1.21 |   0.00 |  0.0 |      56.25 |  3590.97
cartesian                                        (7) |        started at 2023-01-15T19:02:55.805
boundscheck                                      (9) |     3.71 |   0.00 |  0.0 |       0.52 |  4865.59
osutils                                          (9) |        started at 2023-01-15T19:02:58.041
osutils                                          (9) |     0.04 |   0.00 |  0.0 |       1.17 |  4865.59
channels                                         (9) |        started at 2023-01-15T19:02:58.091
cartesian                                        (7) |     3.53 |   0.11 |  3.2 |     397.77 |  3609.27
iostream                                         (7) |        started at 2023-01-15T19:02:59.342
iostream                                         (7) |     0.66 |   0.03 |  3.8 |      97.51 |  3612.00
secretbuffer                                     (7) |        started at 2023-01-15T19:03:00.012
secretbuffer                                     (7) |     0.91 |   0.61 | 67.4 |      18.27 |  3613.94
specificity                                      (7) |        started at 2023-01-15T19:03:00.928
specificity                                      (7) |     0.11 |   0.00 |  0.0 |       3.99 |  3614.17
reinterpretarray                                 (7) |        started at 2023-01-15T19:03:01.043
      From worker 5:	┌ Warning: `old_return_args` is deprecated, use `new_return_args` instead.
      From worker 5:	│   caller = macro expansion at Test.jl:477 [inlined]
      From worker 5:	└ @ Core /Volumes/ssd500/julia/usr/share/julia/stdlib/v1.10/Test/src/Test.jl:477
      From worker 5:	┌ Warning: `old_return_args` is deprecated, use `new_return_args` instead.
      From worker 5:	│   caller = ip:0x0
      From worker 5:	└ @ Core :-1
misc                                             (5) |    26.59 |   3.52 | 13.2 |    2073.60 |  5260.11
syntax                                           (5) |        started at 2023-01-15T19:03:09.385
reinterpretarray                                 (7) |     8.94 |   0.25 |  2.8 |    1251.94 |  3669.72
corelogging                                      (7) |        started at 2023-01-15T19:03:09.983
sorting                                          (8) |    88.23 |   0.94 |  1.1 |    7488.71 |  4907.34
missing                                          (8) |        started at 2023-01-15T19:03:10.412
corelogging                                      (7) |     2.53 |   0.05 |  2.0 |     256.66 |  3680.31
asyncmap                                         (7) |        started at 2023-01-15T19:03:12.514
      From worker 5:	WARNING: method definition for f33135 at /Volumes/ssd500/julia/test/syntax.jl:2010 declares type variable C1 but does not use it.
syntax                                           (5) |     7.04 |   0.09 |  1.3 |     528.34 |  5386.61
smallarrayshrink                                 (5) |        started at 2023-01-15T19:03:16.439
smallarrayshrink                                 (5) |     0.20 |   0.00 |  0.0 |      24.24 |  5393.39
opaque_closure                                   (5) |        started at 2023-01-15T19:03:16.644
      From worker 8:	┌ Error: Hint-handler string_concatenation_hint_handler for MethodError in Base caused an error
      From worker 8:	└ @ Base.Experimental experimental.jl:321
opaque_closure                                   (5) |     0.42 |   0.00 |  0.0 |      44.81 |  5409.28
filesystem                                       (5) |        started at 2023-01-15T19:03:17.068
filesystem                                       (5) |     0.14 |   0.00 |  0.0 |      16.60 |  5411.25
download                                         (5) |        started at 2023-01-15T19:03:17.215
asyncmap                                         (7) |     5.19 |   0.09 |  1.7 |     448.42 |  3701.62
SparseArrays/allowscalar                         (7) |        started at 2023-01-15T19:03:17.701
channels                                         (9) |    19.76 |   6.23 | 31.5 |     304.14 |  4865.59
SparseArrays/ambiguous                           (9) |        started at 2023-01-15T19:03:17.857
SparseArrays/allowscalar                         (7) |     0.19 |   0.00 |  0.0 |      14.67 |  3702.56
SparseArrays/cholmod                             (7) |        started at 2023-01-15T19:03:17.894
SparseArrays/ambiguous                           (9) |     3.24 |   0.07 |  2.1 |     686.92 |  4865.59
SparseArrays/fixed                               (9) |        started at 2023-01-15T19:03:21.098
missing                                          (8) |    11.65 |   0.20 |  1.7 |    1209.84 |  4981.02
SparseArrays/higherorderfns                      (8) |        started at 2023-01-15T19:03:22.063
SparseArrays/fixed                               (9) |     4.04 |   0.09 |  2.2 |     363.28 |  4865.59
SparseArrays/issues                              (9) |        started at 2023-01-15T19:03:25.144
SparseArrays/cholmod                             (7) |    20.36 |   0.77 |  3.8 |    2103.71 |  3797.56
SparseArrays/linalg                              (7) |        started at 2023-01-15T19:03:38.261
download                                         (5) |    30.86 |   0.00 |  0.0 |       0.07 |  5411.48
SparseArrays/linalg_solvers                      (5) |        started at 2023-01-15T19:03:48.075
SparseArrays/issues                              (9) |    30.93 |   0.70 |  2.3 |    3930.03 |  4865.59
SparseArrays/sparsematrix_constructors_indexing  (9) |        started at 2023-01-15T19:03:56.078
SparseArrays/linalg_solvers                      (5) |    12.10 |   0.25 |  2.1 |     844.50 |  5554.33
SparseArrays/sparsematrix_ops                    (5) |        started at 2023-01-15T19:04:00.182
SparseArrays/linalg                              (7) |    46.36 |   0.92 |  2.0 |    4280.31 |  4071.59
SparseArrays/sparsevector                        (7) |        started at 2023-01-15T19:04:24.632
SparseArrays/higherorderfns                      (8) |    63.41 |   0.81 |  1.3 |    6272.66 |  5273.69
SparseArrays/spqr                                (8) |        started at 2023-01-15T19:04:25.490
SparseArrays/spqr                                (8) |     6.78 |   0.09 |  1.3 |     613.65 |  5299.89
SparseArrays/umfpack                             (8) |        started at 2023-01-15T19:04:32.282
SparseArrays/sparsematrix_ops                    (5) |    32.97 |   0.50 |  1.5 |    2527.47 |  5688.94
LibGit2/online                                   (5) |        started at 2023-01-15T19:04:33.153
LibGit2/online                                   (5) |     2.05 |   0.00 |  0.0 |      40.78 |  5696.00
LibGit2/libgit2                                  (5) |        started at 2023-01-15T19:04:35.204
      From worker 8:	┌ Info: waiting for UmfpackLU's lock, it's safe to ignore this message.
      From worker 8:	└ see the documentation for Umfpack
      From worker 8:	┌ Info: waiting for UmfpackLU's lock, it's safe to ignore this message.
      From worker 8:	└ see the documentation for Umfpack
      From worker 3:	libc++abi: terminating with uncaught exception of type std::__1::system_error: mutex lock failed: Invalid argument
      From worker 3:
      From worker 3:	[83646] signal (6): Abort trap: 6
      From worker 3:	in expression starting at none:0
      From worker 3:	libc++abi: terminate_handler unexpectedly threw an exception
SparseArrays/umfpack                             (8) |    19.08 |   0.22 |  1.1 |    1548.23 |  5367.78
Dates/accessors                                  (8) |        started at 2023-01-15T19:04:51.377
Dates/accessors                                  (8) |     4.16 |   0.45 | 10.8 |    3305.37 |  5400.09
Dates/adjusters                                  (8) |        started at 2023-01-15T19:04:55.543
Dates/adjusters                                  (8) |     2.53 |   0.00 |  0.0 |     162.91 |  5412.14
Dates/query                                      (8) |        started at 2023-01-15T19:04:58.076
Dates/query                                      (8) |     0.53 |   0.04 |  6.8 |      32.03 |  5413.56
Dates/periods                                    (8) |        started at 2023-01-15T19:04:58.613
cmdlineargs                                      (3) |         failed at 2023-01-15T19:05:01.902
Error During Test at /Volumes/ssd500/julia/test/cmdlineargs.jl:723
  Test threw exception
  Expression: readchomp(`$exename --sysimage-native-code=no -E
        "Bool(Base.JLOptions().use_sysimage_native_code)"`) == "false"
  failed process: Process(`/Volumes/ssd500/julia/usr/bin/julia -Cnative -J/Volumes/ssd500/julia/usr/lib/julia/sys.dylib --depwarn=error --check-bounds=yes -g1 --startup-file=no --startup-file=no --sysimage-native-code=no -E 'Bool(Base.JLOptions().use_sysimage_native_code)'`, ProcessSignaled(6)) [0]

  Stacktrace:
   [1] pipeline_error
     @ ./process.jl:565 [inlined]
   [2] read(cmd::Cmd)
     @ Base ./process.jl:449
   [3] read(cmd::Cmd, #unused#::Type{String})
     @ Base ./process.jl:458
   [4] readchomp(x::Cmd)
     @ Base ./io.jl:961
   [5] macro expansion
     @ /Volumes/ssd500/julia/usr/share/julia/stdlib/v1.10/Test/src/Test.jl:477 [inlined]
   [6] top-level scope
     @ /Volumes/ssd500/julia/test/cmdlineargs.jl:723

Dates/ranges                                    (10) |        started at 2023-01-15T19:05:04.231
Dates/periods                                    (8) |     9.07 |   0.13 |  1.4 |    1099.97 |  5469.09
Dates/rounding                                   (8) |        started at 2023-01-15T19:05:07.764
Dates/rounding                                   (8) |     1.23 |   0.04 |  3.4 |      60.23 |  5477.31
Dates/types                                      (8) |        started at 2023-01-15T19:05:09.001
Dates/types                                      (8) |     0.68 |   0.00 |  0.0 |      49.17 |  5482.41
Dates/io                                         (8) |        started at 2023-01-15T19:05:09.679
spawn                                            (6) |   207.84 |   0.09 |  0.0 |     399.24 |  3298.38
Dates/arithmetic                                 (6) |        started at 2023-01-15T19:05:11.535
Dates/ranges                                    (10) |     8.04 |   0.12 |  1.4 |     886.58 |   574.47
Dates/conversions                               (10) |        started at 2023-01-15T19:05:12.393
Dates/conversions                               (10) |     0.55 |   0.00 |  0.0 |      32.56 |   579.28
ArgTools                                        (10) |        started at 2023-01-15T19:05:12.943
Dates/arithmetic                                 (6) |     3.79 |   0.09 |  2.3 |     490.50 |  3316.47
Artifacts                                        (6) |        started at 2023-01-15T19:05:15.335
ArgTools                                        (10) |     2.83 |   0.07 |  2.5 |     698.43 |   591.42
Base64                                          (10) |        started at 2023-01-15T19:05:15.775
Dates/io                                         (8) |     6.97 |   0.06 |  0.9 |     619.96 |  5535.81
CRC32c                                           (8) |        started at 2023-01-15T19:05:16.653
CRC32c                                           (8) |     0.34 |   0.00 |  0.0 |      34.56 |  5537.11
CompilerSupportLibraries_jll                     (8) |        started at 2023-01-15T19:05:16.991
CompilerSupportLibraries_jll                     (8) |     0.05 |   0.00 |  0.0 |       3.64 |  5537.28
Downloads                                        (8) |        started at 2023-01-15T19:05:17.044
Base64                                          (10) |     1.31 |   0.12 |  9.5 |    1533.14 |   635.53
FileWatching                                    (10) |        started at 2023-01-15T19:05:17.082
Artifacts                                        (6) |     2.56 |   0.04 |  1.6 |     128.63 |  3321.47
Future                                           (6) |        started at 2023-01-15T19:05:17.903
Future                                           (6) |     0.00 |   0.00 |  0.0 |       0.11 |  3321.47
GMP_jll                                          (6) |        started at 2023-01-15T19:05:17.906
GMP_jll                                          (6) |     0.49 |   0.00 |  0.0 |       6.45 |  3322.06
InteractiveUtils                                 (6) |        started at 2023-01-15T19:05:18.402
InteractiveUtils                                 (6) |     8.49 |   0.19 |  2.3 |    1032.25 |  3377.86
LLD_jll                                          (6) |        started at 2023-01-15T19:05:26.894
LLD_jll                                          (6) |     0.25 |   0.00 |  0.0 |       0.59 |  3377.95
LLVMLibUnwind_jll                                (6) |        started at 2023-01-15T19:05:27.151
LLVMLibUnwind_jll                                (6) |     0.26 |   0.00 |  0.0 |       0.62 |  3378.06
LazyArtifacts                                    (6) |        started at 2023-01-15T19:05:27.408
LazyArtifacts                                    (6) |     1.28 |   0.00 |  0.0 |      20.86 |  3380.83
LibCURL                                          (6) |        started at 2023-01-15T19:05:28.686
LibCURL                                          (6) |     1.10 |   0.00 |  0.0 |       7.22 |  3381.89
LibCURL_jll                                      (6) |        started at 2023-01-15T19:05:29.787
LibCURL_jll                                      (6) |     0.02 |   0.00 |  0.0 |       0.85 |  3381.89
LibGit2_jll                                      (6) |        started at 2023-01-15T19:05:29.809
LibGit2_jll                                      (6) |     0.83 |   0.00 |  0.0 |       1.86 |  3382.22
LibSSH2_jll                                      (6) |        started at 2023-01-15T19:05:30.643
LibSSH2_jll                                      (6) |     0.02 |   0.00 |  0.0 |       0.62 |  3382.25
LibUV_jll                                        (6) |        started at 2023-01-15T19:05:30.662
LibUV_jll                                        (6) |     0.32 |   0.00 |  0.0 |       1.20 |  3382.48
LibUnwind_jll                                    (6) |        started at 2023-01-15T19:05:30.984
LibUnwind_jll                                    (6) |     0.27 |   0.00 |  0.0 |       0.52 |  3382.56
Libdl                                            (6) |        started at 2023-01-15T19:05:31.253
Libdl                                            (6) |     0.41 |   0.00 |  0.0 |      22.85 |  3389.56
Logging                                          (6) |        started at 2023-01-15T19:05:31.666
Logging                                          (6) |     0.48 |   0.00 |  0.0 |      31.86 |  3392.17
MPFR_jll                                         (6) |        started at 2023-01-15T19:05:32.143
MPFR_jll                                         (6) |     0.28 |   0.00 |  0.0 |       1.27 |  3392.28
Markdown                                         (6) |        started at 2023-01-15T19:05:32.423
Markdown                                         (6) |     2.29 |   0.04 |  1.9 |     286.73 |  3410.59
MbedTLS_jll                                      (6) |        started at 2023-01-15T19:05:34.720
MbedTLS_jll                                      (6) |     0.02 |   0.00 |  0.0 |       1.86 |  3410.69
Mmap                                             (6) |        started at 2023-01-15T19:05:34.745
floatfuncs                                       (4) |   162.34 |   6.10 |  3.8 |   55395.32 |  3336.77
MozillaCACerts_jll                               (4) |        started at 2023-01-15T19:05:36.333
MozillaCACerts_jll                               (4) |     0.00 |   0.00 |  0.0 |       0.15 |  3336.91
NetworkOptions                                   (4) |        started at 2023-01-15T19:05:36.338
NetworkOptions                                   (4) |     0.53 |   0.00 |  0.0 |      37.94 |  3339.69
OpenBLAS_jll                                     (4) |        started at 2023-01-15T19:05:36.871
OpenBLAS_jll                                     (4) |     0.01 |   0.00 |  0.0 |       0.26 |  3339.75
OpenLibm_jll                                     (4) |        started at 2023-01-15T19:05:36.885
OpenLibm_jll                                     (4) |     0.27 |   0.00 |  0.0 |       1.20 |  3339.88
PCRE2_jll                                        (4) |        started at 2023-01-15T19:05:37.154
PCRE2_jll                                        (4) |     0.28 |   0.00 |  0.0 |       2.53 |  3339.98
Pkg                                              (4) |        started at 2023-01-15T19:05:37.441
      From worker 4:	[ Info: Installing HistoricalStdlibVersions for Pkg tests
      From worker 4:	  Installing known registries into `/Volumes/ssd500/juliabuildtemp`
LibGit2/libgit2                                  (5) |    63.28 |   0.32 |  0.5 |    1029.25 |  5842.61
Printf                                           (5) |        started at 2023-01-15T19:05:38.483
      From worker 4:	    Updating registry at `/Volumes/ssd500/juliabuildtemp/registries/General.toml`
      From worker 4:	   Resolving package versions...
      From worker 4:	   Installed HistoricalStdlibVersions ─ v1.2.0
      From worker 4:	    Updating `/Volumes/ssd500/juliabuildtemp/environments/v1.10/Project.toml`
      From worker 4:	  [6df8b67a] + HistoricalStdlibVersions v1.2.0
      From worker 4:	    Updating `/Volumes/ssd500/juliabuildtemp/environments/v1.10/Manifest.toml`
      From worker 4:	  [6df8b67a] + HistoricalStdlibVersions v1.2.0
      From worker 4:	Precompiling project...
      From worker 4:	  ✓ HistoricalStdlibVersions
      From worker 4:	  1 dependency successfully precompiled in 0 seconds
      From worker 4:	┌ Info: Pkg Server metadata:
      From worker 4:	│ HTTP/2 301
      From worker 4:	│ server: Varnish
      From worker 4:	│ retry-after: 0
      From worker 4:	│ location: https://us-east.pkg.julialang.org/
      From worker 4:	│ x-geo-continent: NA
      From worker 4:	│ x-geo-country: US
      From worker 4:	│ x-geo-region: CT
      From worker 4:	│ accept-ranges: bytes
      From worker 4:	│ date: Mon, 16 Jan 2023 00:05:41 GMT
      From worker 4:	│ via: 1.1 varnish
      From worker 4:	│ x-served-by: cache-bos4631-BOS
      From worker 4:	│ x-cache: HIT
      From worker 4:	│ x-cache-hits: 0
      From worker 4:	│ x-timer: S1673827541.352030,VS0,VE1
      From worker 4:	│ content-length: 0
      From worker 4:	│
      From worker 4:	│ HTTP/2 200
      From worker 4:	│ server: nginx/1.23.3
      From worker 4:	│ date: Mon, 16 Jan 2023 00:05:41 GMT
      From worker 4:	│ content-type: text/html
      From worker 4:	│ content-length: 402
      From worker 4:	│ accept-ranges: bytes
      From worker 4:	│ x-lb-strategy: pkgservers_roundrobin
      From worker 4:	└
      From worker 4:	[ Info: Pkg test output is silenced
      From worker 4:	[ Info: Downloading General registry from https://pkg.julialang.org/registry/23338594-aafe-5451-b93e-139f81909106/c73788cdf593b82ae4573a63d96656f374200df2
Printf                                           (5) |     6.78 |   0.15 |  2.3 |     712.50 |  5851.61
Profile                                          (5) |        started at 2023-01-15T19:05:45.270
Mmap                                             (6) |    12.69 |  10.54 | 83.1 |     168.13 |  3420.98
REPL                                             (6) |        started at 2023-01-15T19:05:47.437
REPL                                             (6) |    12.91 |   0.27 |  2.1 |    1556.67 |  3500.56
Random                                           (6) |        started at 2023-01-15T19:06:00.355
SparseArrays/sparsematrix_constructors_indexing  (9) |   128.74 |  65.64 | 51.0 |    5372.00 |  4865.59
SHA                                              (9) |        started at 2023-01-15T19:06:04.827
SparseArrays/sparsevector                        (7) |   113.43 |   2.48 |  2.2 |   12989.99 |  4835.95
Serialization                                    (7) |        started at 2023-01-15T19:06:18.123
Serialization                                    (7) |     3.33 |   0.12 |  3.5 |     533.05 |  4853.00
Sockets                                          (7) |        started at 2023-01-15T19:06:21.452
Downloads                                        (8) |    65.60 |   0.46 |  0.7 |     227.25 |  5620.95
Statistics                                       (8) |        started at 2023-01-15T19:06:22.650
Sockets                                          (7) |     4.97 |   0.06 |  1.2 |     172.03 |  4871.23
SuiteSparse                                      (7) |        started at 2023-01-15T19:06:26.432
SuiteSparse                                      (7) |     0.46 |   0.00 |  0.0 |      14.83 |  4872.08
SuiteSparse_jll                                  (7) |        started at 2023-01-15T19:06:26.897
SuiteSparse_jll                                  (7) |     0.60 |   0.00 |  0.0 |       1.25 |  4872.59
TOML                                             (7) |        started at 2023-01-15T19:06:27.504
Random                                           (6) |    28.22 |   1.55 |  5.5 |    2546.87 |  3754.14
Tar                                              (6) |        started at 2023-01-15T19:06:28.575
LinearAlgebra/addmul                             (2) |   615.31 |   8.72 |  1.4 |   60707.44 |  2029.62
Test                                             (2) |        started at 2023-01-15T19:06:29.171
TOML                                             (7) |    10.19 |   0.30 |  2.9 |    1058.32 |  4919.66
UUIDs                                            (7) |        started at 2023-01-15T19:06:37.693
UUIDs                                            (7) |     0.22 |   0.02 | 10.2 |      19.37 |  4920.84
Unicode                                          (7) |        started at 2023-01-15T19:06:37.920
Unicode                                          (7) |     2.16 |   0.05 |  2.2 |     212.50 |  4935.55
Zlib_jll                                         (7) |        started at 2023-01-15T19:06:40.077
Zlib_jll                                         (7) |     0.26 |   0.00 |  0.0 |       1.18 |  4935.67
dSFMT_jll                                        (7) |        started at 2023-01-15T19:06:40.343
dSFMT_jll                                        (7) |     0.28 |   0.00 |  0.0 |       1.20 |  4935.80
libLLVM_jll                                      (7) |        started at 2023-01-15T19:06:40.628
libLLVM_jll                                      (7) |     0.27 |   0.00 |  0.0 |       0.54 |  4935.91
libblastrampoline_jll                            (7) |        started at 2023-01-15T19:06:40.898
libblastrampoline_jll                            (7) |     0.01 |   0.00 |  0.0 |       0.56 |  4935.97
nghttp2_jll                                      (7) |        started at 2023-01-15T19:06:40.912
nghttp2_jll                                      (7) |     0.02 |   0.00 |  0.0 |       1.03 |  4936.03
p7zip_jll                                        (7) |        started at 2023-01-15T19:06:40.939
p7zip_jll                                        (7) |     0.00 |   0.00 |  0.0 |       0.18 |  4936.03
      From worker 7:
      From worker 7:	[78994] signal (11.2): Segmentation fault: 11
      From worker 7:	in expression starting at none:0
      From worker 7:	libc++abi: terminating with uncaught exception of type std::__1::system_error: mutex lock failed: Invalid argument
      From worker 7:
      From worker 7:	[78994] signal (6): Abort trap: 6
      From worker 7:	in expression starting at none:0
      From worker 7:	libc++abi: terminate_handler unexpectedly threw an exception
Profile                                          (5) |    58.12 |   0.22 |  0.4 |    1307.54 |  6354.20
      From worker 5:
      From worker 5:	[78992] signal (11.2): Segmentation fault: 11
      From worker 5:	in expression starting at none:0
      From worker 5:	libc++abi: terminating with uncaught exception of type std::__1::system_error: mutex lock failed: Invalid argument
      From worker 5:
      From worker 5:	[78992] signal (6): Abort trap: 6
      From worker 5:	in expression starting at none:0
      From worker 5:	libc++abi: terminate_handler unexpectedly threw an exception
SHA                                              (9) |    39.81 |   0.03 |  0.1 |     426.36 |  4865.59
Tar                                              (6) |    17.32 |   0.57 |  3.3 |    5040.30 |  3905.36
Test                                             (2) |    20.92 |   0.13 |  0.6 |     662.47 |  2084.14
Statistics                                       (8) |    32.85 |   0.52 |  1.6 |    3602.84 |  6044.02
FileWatching                                    (10) |   103.97 |   0.62 |  0.6 |     220.17 |   660.67
      From worker 4:	Base.Filesystem.temp_cleanup_purge(force = true): 5.668317 seconds (1.16 M allocations: 131.288 MiB, 0.49% gc time)
Pkg                                              (4) |   669.98 |   6.05 |  0.9 |   26369.97 |  5113.48

Executing tests that run on node 1 only:
precompile                                       (1) |        started at 2023-01-15T19:16:47.705
precompile                                       (1) |    25.91 |   0.08 |  0.3 |     558.62 |   425.61
SharedArrays                                     (1) |        started at 2023-01-15T19:17:13.620
SharedArrays                                     (1) |    11.58 |   0.40 |  3.4 |     986.76 |   474.70
threads                                          (1) |        started at 2023-01-15T19:17:25.197
Test Summary:                     | Pass  Total  Time
Threads.Conditions must be locked |    5      5  0.0s
Test Summary:       | Pass  Total  Time
IntrusiveLinkedList |   72     72  0.1s
Test Summary:        | Pass  Total  Time
@spawn interpolation |   10     10  0.7s
Test Summary:        | Pass  Total  Time
@async interpolation |    8      8  0.0s
Test Summary:                   | Pass  Total  Time
spawn interpolation: macrocalls |    2      2  1.6s
Test Summary: | Pass  Total  Time
Co-schedule   |    1      1  0.0s
Test Summary:                 | Pass  Total  Time
Threads.foreach(f, ::Channel) |    7      7  1.3s
Test Summary:     | Pass  Total  Time
Task-local random |    4      4  0.1s
Test Summary: | Pass  Total  Time
Racy `@spawn` |    1      1  0.1s
Test Summary:   | Pass  Total  Time
package loading |    1      1  0.3s
Test Summary:                     | Pass  Total  Time
Threads.Conditions must be locked |    5      5  0.0s
Test Summary:       | Pass  Total  Time
IntrusiveLinkedList |   72     72  0.1s
Test Summary:        | Pass  Total  Time
@spawn interpolation |   10     10  0.7s
Test Summary:        | Pass  Total  Time
@async interpolation |    8      8  0.0s
Test Summary:                   | Pass  Total  Time
spawn interpolation: macrocalls |    2      2  1.6s
Test Summary: | Pass  Total  Time
Co-schedule   |    1      1  0.0s
Test Summary:                 | Pass  Total  Time
Threads.foreach(f, ::Channel) |    7      7  1.2s
Test Summary:     | Pass  Total  Time
Task-local random |    4      4  0.0s
Test Summary: | Pass  Total  Time
Racy `@spawn` |    1      1  0.1s
Test Summary:   | Pass  Total  Time
package loading |    1      1  0.1s
Test Summary:                     | Pass  Total  Time
Threads.Conditions must be locked |    5      5  0.0s
Test Summary:       | Pass  Total  Time
IntrusiveLinkedList |   72     72  0.1s
Test Summary:        | Pass  Total  Time
@spawn interpolation |   10     10  0.7s
Test Summary:        | Pass  Total  Time
@async interpolation |    8      8  0.0s
Test Summary:                   | Pass  Total  Time
spawn interpolation: macrocalls |    2      2  1.6s
Test Summary: | Pass  Total  Time
Co-schedule   |    1      1  0.0s
Test Summary:                 | Pass  Total  Time
Threads.foreach(f, ::Channel) |    7      7  1.2s
Test Summary:     | Pass  Total  Time
Task-local random |    4      4  0.0s
Test Summary: | Pass  Total  Time
Racy `@spawn` |    1      1  0.1s
Test Summary:   | Pass  Total  Time
package loading |    1      1  0.1s
Test Summary:                     | Pass  Total  Time
Threads.Conditions must be locked |    5      5  0.0s
Test Summary:       | Pass  Total  Time
IntrusiveLinkedList |   72     72  0.1s
Test Summary:        | Pass  Total  Time
@spawn interpolation |   10     10  0.7s
Test Summary:        | Pass  Total  Time
@async interpolation |    8      8  0.0s
Test Summary:                   | Pass  Total  Time
spawn interpolation: macrocalls |    2      2  1.6s
Test Summary: | Pass  Total  Time
Co-schedule   |    1      1  0.0s
Test Summary:                 | Pass  Total  Time
Threads.foreach(f, ::Channel) |    7      7  1.3s
Test Summary:     | Pass  Total  Time
Task-local random |    4      4  0.0s
Test Summary: | Pass  Total  Time
Racy `@spawn` |    1      1  0.1s
Test Summary:   | Pass  Total  Time
package loading |    1      1  0.1s
threads                                          (1) |    84.60 |   0.01 |  0.0 |      34.67 |   477.28
Distributed                                      (1) |        started at 2023-01-15T19:18:49.799
┌ Warning: Skipping a thread-unsafe test because `Threads.maxthreadid() > 1`
│   Threads.maxthreadid() = 5
└ @ Main /Volumes/ssd500/julia/usr/share/julia/stdlib/v1.10/Distributed/test/distributed_exec.jl:161
┌ Warning: Skipping a thread-unsafe test because `Threads.maxthreadid() > 1`
│   Threads.maxthreadid() = 5
└ @ Main /Volumes/ssd500/julia/usr/share/julia/stdlib/v1.10/Distributed/test/distributed_exec.jl:161
[ Info: SO_REUSEPORT is unsupported, skipping reuseport tests
      From worker 28:
      From worker 28:	[89312] signal (15): Terminated: 15
      From worker 28:	in expression starting at none:0
      From worker 28:	__psynch_cvwait at /usr/lib/system/libsystem_kernel.dylib (unknown line)
      From worker 28:	unknown function (ip: 0x0)
      From worker 28:	__psynch_cvwait at /usr/lib/system/libsystem_kernel.dylib (unknown line)
      From worker 28:	unknown function (ip: 0x0)
      From worker 28:	__psynch_cvwait at /usr/lib/system/libsystem_kernel.dylib (unknown line)
      From worker 28:	unknown function (ip: 0x0)
      From worker 28:	__psynch_cvwait at /usr/lib/system/libsystem_kernel.dylib (unknown line)
      From worker 28:	unknown function (ip: 0x0)
      From worker 28:	kevent at /usr/lib/system/libsystem_kernel.dylib (unknown line)
      From worker 28:	unknown function (ip: 0x0)
      From worker 28:	Allocations: 2623876 (Pool: 2621998; Big: 1878); GC: 4
┌ Warning: rmprocs: process 1 not removed
└ @ Distributed /Volumes/ssd500/julia/usr/share/julia/stdlib/v1.10/Distributed/src/cluster.jl:1049
Distributed                                      (1) |   116.05 |   0.01 |  0.0 |      30.78 |   478.88
stress                                           (1) |        started at 2023-01-15T19:20:45.849
(libuv) kqueue(): Too many open files
stress                                           (1) |     7.75 |   0.01 |  0.1 |      43.18 |   479.62

Test Summary:                                     |     Pass  Error  Broken     Total      Time
  Overall                                         | 40799327      1  352799  41152127  20m34.9s
    LinearAlgebra/special                         |     3675                     3675   1m41.8s
    LinearAlgebra/bidiag                          |     4824                     4824   1m44.7s
    LinearAlgebra/dense                           |     8561                     8561   2m22.7s
    LinearAlgebra/diagonal                        |     2919                     2919   2m30.8s
    LinearAlgebra/cholesky                        |     2511                     2511     47.0s
    LinearAlgebra/qr                              |     4705                     4705     51.4s
    LinearAlgebra/symmetric                       |     2853                     2853   2m43.8s
    LinearAlgebra/blas                            |     1629                     1629     23.3s
    LinearAlgebra/matmul                          |     1496                     1496   2m51.7s
    LinearAlgebra/structuredbroadcast             |      670                      670     22.7s
    LinearAlgebra/uniformscaling                  |      446                      446     31.3s
    LinearAlgebra/hessenberg                      |      632                      632     25.9s
    LinearAlgebra/svd                             |      606                      606     24.3s
    LinearAlgebra/lapack                          |      802                      802     15.3s
    LinearAlgebra/lu                              |     1380                     1380     49.2s
    LinearAlgebra/tridiag                         |     1611                     1611     24.4s
    LinearAlgebra/adjtrans                        |      479                      479     14.8s
    LinearAlgebra/eigen                           |      951                      951     33.8s
    LinearAlgebra/givens                          |     1991                     1991      3.3s
    LinearAlgebra/factorization                   |       80             16        96      1.9s
    LinearAlgebra/ldlt                            |        8                        8      0.4s
    LinearAlgebra/pinv                            |      500                      500      6.8s
    ambiguous                                     |      110              2       112      2.7s
    LinearAlgebra/generic                         |      648              1       649     15.9s
    compiler/datastructures                       |      290                      290      2.1s
    compiler/validation                           |       28                       28      0.2s
    compiler/effects                              |      560                      560      1.1s
    compiler/irpasses                             |      252              4       256      2.6s
    compiler/ssair                                |      134                      134      3.9s
    LinearAlgebra/bunchkaufman                    |     5689                     5689     19.2s
    LinearAlgebra/lq                              |     3098                     3098     30.6s
    compiler/contextual                           |       12                       12      1.6s
    compiler/inline                               |      284              2       286      2.8s
    compiler/codegen                              |      183                      183      6.6s
    compiler/EscapeAnalysis/interprocedural       |       32              4        36      4.9s
    compiler/inference                            |     1305              5      1310     12.9s
    strings/search                                |      876                      876      2.5s
    compiler/EscapeAnalysis/local                 |      347             21       368      8.2s
    strings/basic                                 |    87695                    87695      4.4s
    strings/io                                    |    12764                    12764      1.7s
    unicode/utf8                                  |       19                       19      0.1s
    strings/types                                 |  2302691                  2302691      1.8s
    compiler/AbstractInterpreter                  |       25                       25     12.8s
    worlds                                        |      102                      102      1.1s
    strings/util                                  |     1152                     1152      5.5s
    keywordargs                                   |      151                      151      0.9s
    atomics                                       |     3448                     3448      8.1s
    subtype                                       |   338004             54    338058      7.0s
    triplequote                                   |       29                       29      0.0s
    char                                          |     1639                     1639      1.2s
    intrinsics                                    |      309                      309      1.4s
    hashing                                       |    12519                    12519      7.7s
    iobuffer                                      |      209                      209      0.7s
    staged                                        |       70                       70      1.3s
    dict                                          |   144450                   144450     14.1s
    numbers                                       |  1584929              1   1584930     31.8s
    tuple                                         |      670                      670      4.6s
    offsetarray                                   |      513              3       516     20.7s
    LinearAlgebra/schur                           |      500                      500   1m16.7s
    LinearAlgebra/triangular                      |    37936                    37936   4m37.6s
    reduce                                        |     8602                     8602     11.1s
    simdloop                                      |      240                      240      0.8s
    core                                          |  8445985              3   8445988     51.9s
    vecelement                                    |      678                      678      3.8s
    rational                                      |    98695              2     98697     14.3s
    copy                                          |      556                      556      1.8s
    intfuncs                                      |   228494                   228494     22.7s
    fastmath                                      |      946                      946      3.5s
    functional                                    |       98                       98      3.3s
    arrayops                                      |     2122              5      2127     57.1s
    reducedim                                     |     1225              6      1231     44.3s
    operators                                     |    13055                    13055      4.2s
    path                                          |      373             12       385      0.6s
    ordering                                      |       37                       37      3.1s
    parse                                         |    16099                    16099      1.8s
    math                                          |  1910148                  1910148     27.6s
    gmp                                           |     2445                     2445      2.5s
    ccall                                         |   165130              1    165131     12.4s
    abstractarray                                 |    55361          24806     80167   1m05.7s
    backtrace                                     |       39              1        40      5.5s
    exceptions                                    |       70                       70      1.3s
    subarray                                      |   459022                   459022   2m06.3s
    file                                          |     1074                     1074      4.7s
    version                                       |     2453                     2453      0.6s
    iterators                                     |    86621                    86621     48.5s
    namedtuple                                    |      230                      230      1.7s
    loading                                       |   143148                   143148     34.8s
    complex                                       |     8480              2      8482      6.1s
    mpfr                                          |     1137              1      1138      8.3s
    floatapprox                                   |       49                       49      0.6s
    regex                                         |      147                      147      1.2s
    reflection                                    |      436                      436      3.9s
    read                                          |     3812                     3812     17.3s
    sysinfo                                       |        4                        4      0.1s
    float16                                       |   762093                   762093      3.3s
    env                                           |      203                      203      0.5s
    rounding                                      |   150016                   150016      2.5s
    combinatorics                                 |      171                      171      3.4s
    mod2pi                                        |       80                       80      0.2s
    euler                                         |       12                       12      0.5s
    client                                        |        5                        5      0.7s
    errorshow                                     |      247                      247      5.2s
    bitarray                                      |   945880              8    945888   1m40.3s
    goto                                          |       19                       19      0.0s
    show                                          |   128982              8    128990     15.8s
    llvmcall                                      |       20                       20      0.4s
    llvmcall2                                     |       20                       20      0.1s
    some                                          |       72                       72      0.5s
    ryu                                           |    31217                    31217      0.9s
    meta                                          |       69                       69      0.5s
    stacktraces                                   |       48                       48      1.1s
    docs                                          |      239                      239      2.4s
    broadcast                                     |      526                      526     36.1s
    binaryplatforms                               |      341                      341      2.6s
    sets                                          |     3779                     3779     16.1s
    enums                                         |      100                      100      1.7s
    atexit                                        |       56                       56      4.8s
    interpreter                                   |        3                        3      0.6s
    ranges                                        | 12110947         327683  12438630     31.3s
    int                                           |   736488             40    736528      6.1s
    bitset                                        |      200                      200      1.3s
    checked                                       |     1239                     1239      3.8s
    error                                         |       83                       83      1.2s
    boundscheck                                   |                              None      3.7s
    osutils                                       |       43                       43      0.1s
    cartesian                                     |      349              3       352      3.5s
    iostream                                      |       50                       50      0.7s
    secretbuffer                                  |       30                       30      0.9s
    specificity                                   |      175                      175      0.1s
    misc                                          |  1282279                  1282279     26.8s
    reinterpretarray                              |      421                      421      8.9s
    sorting                                       |    41426              9     41435   1m28.2s
    corelogging                                   |      235                      235      2.5s
    syntax                                        |     1684              1      1685      7.5s
    smallarrayshrink                              |       36                       36      0.2s
    opaque_closure                                |       68              1        69      0.4s
    filesystem                                    |        6                        6      0.1s
    asyncmap                                      |      307                      307      5.2s
    channels                                      |      258                      258     19.8s
    SparseArrays/allowscalar                      |        9                        9      0.2s
    SparseArrays/ambiguous                        |        1                        1      3.2s
    missing                                       |      574              1       575     11.7s
    SparseArrays/fixed                            |       58                       58      4.0s
    SparseArrays/cholmod                          |      611                      611     20.4s
    download                                      |                              None     30.9s
    SparseArrays/issues                           |      337                      337     30.9s
    SparseArrays/linalg_solvers                   |      364                      364     12.1s
    SparseArrays/linalg                           |     4622                     4622     46.4s
    SparseArrays/higherorderfns                   |     7172              1      7173   1m03.4s
    SparseArrays/spqr                             |      104                      104      6.8s
    SparseArrays/sparsematrix_ops                 |      663                      663     33.0s
    LibGit2/online                                |       10                       10      2.1s
    SparseArrays/umfpack                          |      345                      345     19.1s
    Dates/accessors                               |  7723858                  7723858      4.2s
    Dates/adjusters                               |     3149                     3149      2.5s
    Dates/query                                   |     1004                     1004      0.5s
    cmdlineargs                                   |      266      1       5       272   2m15.2s
    Dates/periods                                 |      953                      953      9.1s
    Dates/rounding                                |      315                      315      1.3s
    Dates/types                                   |      232                      232      0.7s
    spawn                                         |      252              4       256   3m27.8s
    Dates/ranges                                  |   350639                   350639      8.5s
    Dates/conversions                             |      161                      161      0.6s
    Dates/arithmetic                              |      385                      385      3.8s
    ArgTools                                      |      180                      180      2.8s
    Dates/io                                      |      361                      361      7.0s
    CRC32c                                        |      664                      664      0.3s
    CompilerSupportLibraries_jll                  |        5                        5      0.1s
    Base64                                        |     2031                     2031      1.3s
    Artifacts                                     |     1453                     1453      2.6s
    Future                                        |                              None      0.0s
    GMP_jll                                       |        1                        1      0.5s
    InteractiveUtils                              |      299                      299      8.5s
    LLD_jll                                       |        2                        2      0.3s
    LLVMLibUnwind_jll                             |        7                        7      0.3s
    LazyArtifacts                                 |        4                        4      1.3s
    LibCURL                                       |        6                        6      1.1s
    LibCURL_jll                                   |        1                        1      0.0s
    LibGit2_jll                                   |        2                        2      0.8s
    LibSSH2_jll                                   |                              None      0.0s
    LibUV_jll                                     |        1                        1      0.3s
    LibUnwind_jll                                 |                              None      0.3s
    Libdl                                         |       90              1        91      0.4s
    Logging                                       |       40                       40      0.5s
    MPFR_jll                                      |        1                        1      0.3s
    Markdown                                      |      258                      258      2.3s
    MbedTLS_jll                                   |        1                        1      0.0s
    floatfuncs                                    |      232                      232   2m42.3s
    MozillaCACerts_jll                            |        1                        1      0.0s
    NetworkOptions                                |     3518                     3518      0.5s
    OpenBLAS_jll                                  |        1                        1      0.0s
    OpenLibm_jll                                  |        1                        1      0.3s
    PCRE2_jll                                     |        2                        2      0.3s
    LibGit2/libgit2                               |      758                      758   1m03.3s
    Printf                                        |     1017                     1017      6.8s
    Mmap                                          |      140                      140     12.7s
    REPL                                          |     1595              3      1598     12.9s
    SparseArrays/sparsematrix_constructors_indexing |     2002                     2002   2m08.7s
    SparseArrays/sparsevector                     |    10509              4     10513   1m53.4s
    Serialization                                 |      131              1       132      3.4s
    Downloads                                     |      238                      238   1m05.6s
    Sockets                                       |      172                      172      5.0s
    SuiteSparse                                   |                              None      0.5s
    SuiteSparse_jll                               |        1                        1      0.6s
    Random                                        |   204840                   204840     28.2s
    LinearAlgebra/addmul                          |    16776                    16776  10m16.2s
    TOML                                          |      623             45       668     10.2s
    UUIDs                                         |     1029                     1029      0.2s
    Unicode                                       |      795                      795      2.2s
    Zlib_jll                                      |        1                        1      0.3s
    dSFMT_jll                                     |        1                        1      0.3s
    libLLVM_jll                                   |        1                        1      0.3s
    libblastrampoline_jll                         |        1                        1      0.0s
    nghttp2_jll                                   |        1                        1      0.0s
    p7zip_jll                                     |        1                        1      0.0s
    Profile                                       |      116                      116     58.1s
    SHA                                           |      107                      107     39.8s
    Tar                                           |     3225             11      3236     17.3s
    Test                                          |      458             17       475     20.9s
    Statistics                                    |      810                      810     32.9s
    FileWatching                                  |      562                      562   1m44.0s
    Pkg                                           |     3122              1      3123  11m10.0s
    precompile                                    |      228                      228     26.1s
    SharedArrays                                  |      114                      114     11.6s
    threads                                       |       40                       40   1m24.6s
    Distributed                                   |       15                       15   1m56.1s
    stress                                        |      118                      118      7.8s
    FAILURE

The global RNG seed was 0xf7f69c2a59ee3452723f02cb36b5135d.

Error in testset cmdlineargs:
Error During Test at /Volumes/ssd500/julia/test/cmdlineargs.jl:723
  Test threw exception
  Expression: readchomp(`$exename --sysimage-native-code=no -E
        "Bool(Base.JLOptions().use_sysimage_native_code)"`) == "false"
  failed process: Process(`/Volumes/ssd500/julia/usr/bin/julia -Cnative -J/Volumes/ssd500/julia/usr/lib/julia/sys.dylib --depwarn=error --check-bounds=yes -g1 --startup-file=no --startup-file=no --sysimage-native-code=no -E 'Bool(Base.JLOptions().use_sysimage_native_code)'`, ProcessSignaled(6)) [0]

  Stacktrace:
   [1] pipeline_error
     @ ./process.jl:565 [inlined]
   [2] read(cmd::Cmd)
     @ Base ./process.jl:449
   [3] read(cmd::Cmd, #unused#::Type{String})
     @ Base ./process.jl:458
   [4] readchomp(x::Cmd)
     @ Base ./io.jl:961
   [5] macro expansion
     @ /Volumes/ssd500/julia/usr/share/julia/stdlib/v1.10/Test/src/Test.jl:477 [inlined]
   [6] top-level scope
     @ /Volumes/ssd500/julia/test/cmdlineargs.jl:723
ERROR: LoadError: Test run finished with errors
in expression starting at /Volumes/ssd500/julia/test/runtests.jl:93
gmake[1]: *** [Makefile:25: all] Error 1
gmake: *** [Makefile:620: testall] Error 2


## Using the newly built Julia,

julia> using Test

julia> let exename = `$(Base.julia_cmd()) --startup-file=no`
           @test readchomp(`$exename --sysimage-native-code=yes -E
               "Bool(Base.JLOptions().use_sysimage_native_code)"`) == "true"
           # @test readchomp(`$exename --sysimage-native-code=no -E
           #     "Bool(Base.JLOptions().use_sysimage_native_code)"`) == "false"
       end
Test Passed

julia> using Test

julia> let exename = `$(Base.julia_cmd()) --startup-file=no`
           # @test readchomp(`$exename --sysimage-native-code=yes -E
           #     "Bool(Base.JLOptions().use_sysimage_native_code)"`) == "true"
           @test readchomp(`$exename --sysimage-native-code=no -E
               "Bool(Base.JLOptions().use_sysimage_native_code)"`) == "false"
       end
Test Passed

@George9000
Copy link
Contributor

George9000 commented Feb 18, 2023

cmdlineargs error above was present through 113c2f3. As of 12d329b, it disappeared. When I have time, I'll do a bisect between these two.

@ViralBShah
Copy link
Member

Close?

@George9000
Copy link
Contributor

George9000 commented Jun 9, 2023

Yes, would close for now. This is a chameleon: it disappears, reappears in later builds, then disappears again. If it becomes persistent again, will open another issue.

@ViralBShah
Copy link
Member

Or reopen this issue...

@vtjnash
Copy link
Member

vtjnash commented Jun 9, 2023

It still has been happening quite frequently (probably our most frequent source of failure aside from networking issues), but I think someone recently deleted the test?

@giordano
Copy link
Contributor

giordano commented Jun 9, 2023

but I think someone recently deleted the test?

Skipped in #50071, but the root problem is still there

@DilumAluthge DilumAluthge reopened this Jun 9, 2023
@vtjnash
Copy link
Member

vtjnash commented Aug 4, 2024

We should try re-enabling that, as the underlying problem is fixed now

@giordano
Copy link
Contributor

giordano commented Aug 7, 2024

Tests restored in #55368

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ci Continuous integration multithreading Base.Threads and related functionality
Projects
None yet
Development

No branches or pull requests

6 participants