CRAN Package Check Results for Package nanonext

Last updated on 2024-05-04 17:52:55 CEST.

Flavor Version Tinstall Tcheck Ttotal Status Flags
r-devel-linux-x86_64-debian-clang 1.0.0 38.55 41.23 79.78 OK
r-devel-linux-x86_64-debian-gcc 1.0.0 36.72 33.56 70.28 OK
r-devel-linux-x86_64-fedora-clang 1.0.0 138.25 OK
r-devel-linux-x86_64-fedora-gcc 1.0.0 184.35 OK
r-devel-windows-x86_64 1.0.0 172.00 95.00 267.00 OK
r-patched-linux-x86_64 0.13.5.2 37.91 41.64 79.55 OK
r-release-linux-x86_64 0.13.5.2 36.96 45.52 82.48 OK
r-release-macos-arm64 1.0.0 102.00 OK
r-release-macos-x86_64 1.0.0 158.00 OK
r-release-windows-x86_64 1.0.0 188.00 92.00 280.00 ERROR
r-oldrel-macos-arm64 1.0.0 101.00 OK
r-oldrel-macos-x86_64 1.0.0 126.00 OK
r-oldrel-windows-x86_64 1.0.0 177.00 100.00 277.00 OK

Check Details

Version: 1.0.0
Check: examples
Result: ERROR Running examples in 'nanonext-Ex.R' failed The error most likely occurred in: > ### Name: reply > ### Title: Reply over Context (RPC Server for Req/Rep Protocol) > ### Aliases: reply > > ### ** Examples > > req <- socket("req", listen = "tcp://127.0.0.1:6546") > rep <- socket("rep", dial = "tcp://127.0.0.1:6546") > > ctxq <- context(req) > ctxp <- context(rep) > > send(ctxq, 2022, block = 100) [1] 0 > reply(ctxp, execute = function(x) x + 1, send_mode = "raw", timeout = 100) [1] 0 > recv(ctxq, mode = "double", block = 100) [1] 2023 > > send(ctxq, 100, mode = "raw", block = 100) [1] 0 > reply(ctxp, recv_mode = "double", execute = log, base = 10, timeout = 100) [1] 0 > recv(ctxq, block = 100) [1] 2 > > close(req) Flavor: r-release-windows-x86_64