Last updated on 2023-02-02 18:54:25 CET.
Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
---|---|---|---|---|---|---|
r-devel-linux-x86_64-debian-clang | 0.11.0 | 6.67 | 358.51 | 365.18 | OK | |
r-devel-linux-x86_64-debian-gcc | 0.11.0 | 5.05 | 258.32 | 263.37 | OK | |
r-devel-linux-x86_64-fedora-clang | 0.11.0 | 444.19 | NOTE | |||
r-devel-linux-x86_64-fedora-gcc | 0.11.0 | 513.41 | OK | |||
r-devel-windows-x86_64 | 0.11.0 | 131.00 | 348.00 | 479.00 | ERROR | |
r-patched-linux-x86_64 | 0.11.0 | 8.36 | 323.81 | 332.17 | OK | |
r-release-linux-x86_64 | 0.11.0 | 5.94 | 327.10 | 333.04 | OK | |
r-release-macos-arm64 | 0.11.0 | 149.00 | OK | |||
r-release-macos-x86_64 | 0.11.0 | 211.00 | OK | |||
r-release-windows-x86_64 | 0.11.0 | 52.00 | 419.00 | 471.00 | OK | |
r-oldrel-macos-arm64 | 0.11.0 | 150.00 | OK | |||
r-oldrel-macos-x86_64 | 0.11.0 | 209.00 | OK | |||
r-oldrel-windows-ix86+x86_64 | 0.11.0 | 14.00 | 381.00 | 395.00 | OK |
Version: 0.11.0
Check: Rd cross-references
Result: NOTE
Undeclared package ‘globals’ in Rd xrefs
Flavor: r-devel-linux-x86_64-fedora-clang
Version: 0.11.0
Check: tests
Result: ERROR
Running 'BatchtoolsFuture,gc.R' [8s]
Running 'BatchtoolsFuture.R' [6s]
Running 'BatchtoolsFutureError.R' [14s]
Running 'batchtools_custom.R' [14s]
Running 'batchtools_hpc.R' [2s]
Running 'batchtools_interactive.R' [4s]
Running 'batchtools_local.R' [12s]
Running 'batchtools_multicore.R' [20s]
Running 'batchtools_ssh.R' [2s]
Running 'batchtools_template.R' [2s]
Running 'demo.R' [11s]
Running 'dotdotdot.R' [2s]
Running 'future,labels.R' [0s]
Running 'future,lazy.R' [0s]
Running 'globals,formulas.R' [0s]
Running 'globals,manual.R' [0s]
Running 'globals,subassignment.R' [19s]
Running 'globals,tricky.R' [20s]
Running 'nbrOfWorkers.R' [2s]
Running 'plan.R' [7s]
Running 'resources_OP.R' [4s]
Running 'rng.R' [22s]
Running 'stdout.R' [21s]
Running 'utils.R' [2s]
Running 'zzz,future_lapply.R' [38s]
Running 'zzz.onUnload.R' [2s]
Running the tests in 'tests/dotdotdot.R' failed.
Complete output:
> source("incl/start.R")
Loading required package: parallelly
Loading required package: future
> library("listenv")
>
> strategies <- c("batchtools_interactive", "batchtools_local")
>
> ## CRAN processing times:
> ## On Windows 32-bit, don't run these tests
> if (!fullTest && isWin32) strategies <- character(0L)
>
>
> message("*** Global argument '...' in futures ...")
*** Global argument '...' in futures ...
>
> sum_fcns <- list()
>
> sum_fcns$A <- function(x, ...) {
+ message("Arguments '...' exists: ", exists("...", inherits = TRUE))
+ y %<-% { sum(x, ...) }
+ y
+ }
>
>
> sum_fcns$B <- function(x, ...) {
+ sumt <- function(x) {
+ message("Arguments '...' exists: ", exists("...", inherits = TRUE))
+ y %<-% { sum(x, ...) }
+ y
+ }
+ sumt(x)
+ }
>
> sum_fcns$C <- function(x, y) {
+ message("Arguments '...' exists: ", exists("...", inherits = TRUE))
+ y %<-% { sum(x, y) }
+ y
+ }
>
> sum_fcns$D <- function(x, y) {
+ message("Arguments '...' exists: ", exists("...", inherits = TRUE))
+ y %<-% { sum(x, y, ...) }
+ y
+ }
>
>
> for (strategy in strategies) {
+ plan(strategy, substitute = FALSE)
+
+ for (name in names(sum_fcns)) {
+ mprintf("** Sum function '%s' with plan('%s') ...\n", name, strategy)
+ sum_fcn <- sum_fcns[[name]]
+ print(sum_fcn)
+ y <- try(sum_fcn(1:2, 3))
+ print(y)
+ if (name %in% c("D")) {
+ stopifnot(inherits(y, "try-error"))
+ } else {
+ stopifnot(y == 6)
+ }
+ }
+ }
** Sum function 'A' with plan('batchtools_interactive') ...
function (x, ...)
{
message("Arguments '...' exists: ", exists("...", inherits = TRUE))
y %<-% {
sum(x, ...)
}
y
}
Arguments '...' exists: TRUE
Error in inDL(x, as.logical(local), as.logical(now), ...) :
unable to load shared object 'D:/RCompile/CRANpkg/lib/4.3/fs/libs/x64/fs.dll':
LoadLibrary failure: Die Auslagerungsdatei ist zu klein, um diesen Vorgang durchzuführen.
[1] "Error in inDL(x, as.logical(local), as.logical(now), ...) : \n unable to load shared object 'D:/RCompile/CRANpkg/lib/4.3/fs/libs/x64/fs.dll':\n LoadLibrary failure: Die Auslagerungsdatei ist zu klein, um diesen Vorgang durchzuführen.\n\n"
attr(,"class")
[1] "try-error"
attr(,"condition")
<simpleError in inDL(x, as.logical(local), as.logical(now), ...): unable to load shared object 'D:/RCompile/CRANpkg/lib/4.3/fs/libs/x64/fs.dll':
LoadLibrary failure: Die Auslagerungsdatei ist zu klein, um diesen Vorgang durchzuführen.
>
Error: y == 6 is not TRUE
Execution halted
Running the tests in 'tests/future,labels.R' failed.
Complete output:
Running the tests in 'tests/future,lazy.R' failed.
Complete output:
Flavor: r-devel-windows-x86_64