CRAN Package Check Results for Package pbdZMQ

Last updated on 2024-03-28 17:49:36 CET.

Flavor Version Tinstall Tcheck Ttotal Status Flags
r-devel-linux-x86_64-debian-clang 0.3-11 9.13 45.30 54.43 OK
r-devel-linux-x86_64-debian-gcc 0.3-11 6.54 34.66 41.20 OK
r-devel-linux-x86_64-fedora-clang 0.3-11 67.53 OK
r-devel-linux-x86_64-fedora-gcc 0.3-11 78.20 OK
r-devel-windows-x86_64 0.3-11 303.00 422.00 725.00 ERROR
r-patched-linux-x86_64 0.3-11 9.53 43.37 52.90 OK
r-release-linux-x86_64 0.3-11 8.01 42.87 50.88 OK
r-release-macos-arm64 0.3-11 39.00 OK
r-release-macos-x86_64 0.3-11 94.00 OK
r-release-windows-x86_64 0.3-11 246.00 101.00 347.00 OK
r-oldrel-macos-arm64 0.3-11 33.00 OK
r-oldrel-windows-x86_64 0.3-11 218.00 95.00 313.00 OK

Check Details

Version: 0.3-11
Check: tests
Result: ERROR Running 'address.R' [0s] Running 'ports.R' [171s] Running 'send_recv.R' [0s] Running 'send_recv_rzmq.R' [154s] Running the tests in 'tests/ports.R' failed. Complete output: > suppressPackageStartupMessages(library(pbdZMQ)) > > min = 49152 > max = 65536 > > rp = random_port(min_port=min, max_port=max) > stopifnot(isTRUE(rp > min) && isTRUE(rp < max)) > > rop = random_open_port(min_port=49152, max_port=65536, max_tries=100) > stopifnot(isTRUE(rop > min) && isTRUE(rop < max)) > > proc.time() user system elapsed 0.18 0.09 0.26 Running the tests in 'tests/send_recv_rzmq.R' failed. Complete output: > suppressPackageStartupMessages(library(pbdZMQ)) > > ### rzmq interface > > ### In general and separate files > # server_context = init.context() > # server_socket = init.socket(server_context, "ZMQ_REP") > # client_context = init.context() > # client_socket = init.socket(client_context, "ZMQ_REQ") > ### Server file > # bind.socket(server_socket, "tcp://*:55555") > ### Client file > # connect.socket(client_socket, "tcp://localhost:55555") > > ### For CRAN testing in local (the same process) only to avoid block > cran_context = init.context() > server_socket = init.socket(cran_context, "ZMQ_REP") > client_socket = init.socket(cran_context, "ZMQ_REQ") > ### Server > bind.socket(server_socket, "inproc://#1") > ### Client > connect.socket(client_socket, "inproc://#1") > > > ### Test rzmq > tester_rzmq = function(indata) + { + send.socket(client_socket, indata) + c2s <- receive.socket(server_socket) + stopifnot(all.equal(c2s, indata)) + + send.socket(server_socket, "ok") + s2c <- receive.socket(client_socket) + stopifnot(all.equal(s2c, "ok")) + } > > tester_rzmq("test") > tester_rzmq(1:5) > > proc.time() user system elapsed 0.17 0.10 0.26 Flavor: r-devel-windows-x86_64