Last updated on 2026-06-08 02:51:21 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 1.4.2 | 12.10 | 106.19 | 118.29 | OK | |
| r-devel-linux-x86_64-debian-gcc | 1.4.2 | 8.40 | 74.08 | 82.48 | ERROR | |
| r-devel-linux-x86_64-fedora-clang | 1.4.2 | 25.00 | 171.94 | 196.94 | OK | |
| r-devel-linux-x86_64-fedora-gcc | 1.4.2 | 28.00 | 191.39 | 219.39 | OK | |
| r-devel-windows-x86_64 | 1.4.2 | 16.00 | 236.00 | 252.00 | OK | |
| r-patched-linux-x86_64 | 1.4.2 | 16.63 | 101.66 | 118.29 | OK | |
| r-release-linux-x86_64 | 1.4.2 | 13.38 | 103.85 | 117.23 | OK | |
| r-release-macos-arm64 | 1.4.2 | 3.00 | 79.00 | 82.00 | OK | |
| r-release-macos-x86_64 | 1.4.2 | 10.00 | 171.00 | 181.00 | OK | |
| r-release-windows-x86_64 | 1.4.2 | 16.00 | 235.00 | 251.00 | OK | |
| r-oldrel-macos-arm64 | 1.4.2 | OK | ||||
| r-oldrel-macos-x86_64 | 1.4.2 | 9.00 | 162.00 | 171.00 | OK | |
| r-oldrel-windows-x86_64 | 1.4.2 | 22.00 | 247.00 | 269.00 | OK |
Version: 1.4.2
Check: examples
Result: ERROR
Running examples in ‘parabar-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: peek
> ### Title: Inspect a Backend
> ### Aliases: peek
>
> ### ** Examples
>
> # Create an asynchronous backend.
> backend <- start_backend(cores = 2, cluster_type = "psock", backend_type = "async")
>
> # Check that the backend is active.
> backend$active
[1] TRUE
>
> # Check if there is anything on the backend.
> peek(backend)
[[1]]
character(0)
[[2]]
character(0)
>
> # Create a dummy variable.
> name <- "parabar"
>
> # Export the `name` variable in the current environment to the backend.
> export(backend, "name", environment())
>
> # Remove the dummy variable from the current environment.
> rm(name)
>
> # Check the backend to see that the variable has been exported.
> peek(backend)
Error:
! in callr subprocess.
Caused by error in `mycall(sym_seterrf, as.character(path)[1])`:
! Cannot open new stderr file `/tmp/Rtmp1suXsj/callr-rs-stderr-71b6e5d5192e8` (system error 28, No space left on device) @client.c:240 (processx_set_stderr_to_file)
---
Backtrace:
1. parabar::peek(backend)
2. backend$peek()
3. private$.peek()
4. private$.cluster$run(function() { …
5. callr:::rs_run(self, private, func, args, package)
6. callr:::throw(res$error)
---
Subprocess backtrace:
.
Execution halted
Examples with CPU (user + system) or elapsed time > 5s
user system elapsed
ProgressTrackingContext 0.73 0.25 5.228
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 1.4.2
Check: tests
Result: ERROR
Running ‘testthat.R’ [25s/49s]
Running the tests in ‘tests/testthat.R’ failed.
Complete output:
> # This file is part of the standard setup for testthat.
> # It is recommended that you do not modify it.
> #
> # Where should you do additional test configuration?
> # Learn more about the roles of various files in:
> # * https://r-pkgs.org/tests.html
> # * https://testthat.r-lib.org/reference/test_package.html#special-files
>
> # Set environmental variable to prevent hang on quitting the `R` session.
> # Error message:
> # - `Error while shutting down parallel: unable to terminate some child processes`
> # See:
> # - https://github.com/r-lib/processx/issues/310
> # - https://github.com/r-lib/processx/issues/240
> # - https://github.com/r-lib/callr/issues/158
> Sys.setenv(PROCESSX_NOTIFY_OLD_SIGCHLD = "true")
>
> library(testthat)
> library(parabar)
>
> test_check("parabar")
Saving _problems/test-user-api-317.R
[ FAIL 1 | WARN 1 | SKIP 3 | PASS 377 ]
══ Skipped tests (3) ═══════════════════════════════════════════════════════════
• On Linux (2): 'test-specification.R:123:5', 'test-user-api.R:169:5'
• Test only runs in interactive contexts. (1): 'test-user-api.R:384:9'
══ Failed tests ════════════════════════════════════════════════════════════════
── Error ('test-user-api.R:317:5'): user API functions run tasks in parallel correctly ──
<callr_status_error/callr_error/rlib_error_3_0/rlib_error/error/condition>
Error: ! in callr subprocess.
Caused by error in `file(file, mode)`:
! cannot open the connection
Backtrace:
▆
1. └─parabar:::tests_set_for_user_api_task_execution(...) at test-user-api.R:317:5
2. ├─testthat::expect_equal(eval(parallel), expected_output) at ./helpers.R:854:5
3. │ └─testthat::quasi_label(enquo(object), label)
4. │ └─rlang::eval_bare(expr, quo_get_env(quo))
5. ├─base::eval(parallel)
6. │ └─base::eval(parallel)
7. └─parabar::par_sapply(...)
8. └─consumer$sapply(backend = backend, x = x, fun = fun, ...)
9. └─private$.execute(backend, parallel, sequential)
10. └─context$get_output(wait = TRUE)
11. └─private$.backend$get_output(...)
12. └─private$.wait_to_fetch_results()
13. └─private$.set_output()
14. └─Exception$async_task_error(output$error)
[ FAIL 1 | WARN 1 | SKIP 3 | PASS 377 ]
Error:
! Test failures.
Execution halted
Flavor: r-devel-linux-x86_64-debian-gcc