CRAN Package Check Results for Package future.batchtools

Last updated on 2026-04-23 23:54:32 CEST.

Flavor Version Tinstall Tcheck Ttotal Status Flags
r-devel-linux-x86_64-debian-clang 0.21.0 6.31 273.44 279.75 OK
r-devel-linux-x86_64-debian-gcc 0.21.0 3.79 187.12 190.91 ERROR
r-devel-linux-x86_64-fedora-clang 0.21.0 10.00 409.53 419.53 ERROR
r-devel-linux-x86_64-fedora-gcc 0.21.0 9.00 439.24 448.24 ERROR
r-devel-macos-arm64 0.21.0 1.00 78.00 79.00 OK
r-devel-windows-x86_64 0.21.0 12.00 264.00 276.00 OK
r-patched-linux-x86_64 0.21.0 6.47 249.02 255.49 OK
r-release-linux-x86_64 0.21.0 4.94 241.25 246.19 OK
r-release-macos-arm64 0.21.0 OK
r-release-macos-x86_64 0.21.0 4.00 272.00 276.00 OK
r-release-windows-x86_64 0.21.0 11.00 256.00 267.00 OK
r-oldrel-macos-arm64 0.21.0 OK
r-oldrel-macos-x86_64 0.21.0 4.00 283.00 287.00 OK
r-oldrel-windows-x86_64 0.21.0 11.00 320.00 331.00 OK

Check Details

Version: 0.21.0
Check: tests
Result: ERROR Running ‘test-BatchtoolsFuture,gc.R’ [4s/5s] Running ‘test-BatchtoolsFuture.R’ [4s/5s] Running ‘test-BatchtoolsFutureError.R’ [5s/5s] Running ‘test-batchtools_bash.R’ [1s/1s] Running ‘test-batchtools_custom.R’ [8s/10s] Running ‘test-batchtools_hpc.R’ [1s/1s] Running ‘test-batchtools_interactive.R’ [2s/3s] Running ‘test-batchtools_local.R’ [6s/8s] Running ‘test-batchtools_multicore.R’ [1s/1s] Running ‘test-batchtools_ssh.R’ [3s/5s] Running ‘test-batchtools_template.R’ [1s/1s] Running ‘test-demo.R’ [6s/8s] Running ‘test-dotdotdot.R’ [6s/8s] Running ‘test-future,labels.R’ [5s/7s] Running ‘test-future,lazy.R’ [3s/4s] Running ‘test-globals,formulas.R’ [13s/17s] Running ‘test-globals,manual.R’ [5s/7s] Running ‘test-globals,subassignment.R’ [9s/11s] Running ‘test-globals,tricky.R’ [11s/13s] Running ‘test-nbrOfWorkers.R’ [1s/1s] Running ‘test-plan.R’ [4s/5s] Running ‘test-resources_OP.R’ [2s/3s] Running ‘test-rng.R’ [12s/15s] Running ‘test-stdout.R’ [8s/10s] Running ‘test-utils.R’ [1s/1s] Running ‘test-zzz,future_lapply.R’ [21s/25s] Running ‘test-zzz.onUnload.R’ [1s/2s] Running the tests in ‘tests/test-globals,manual.R’ failed. Complete output: > ## This runs testme test script inst/testme/test-globals,manual.R > ## Don't edit - it was autogenerated by inst/testme/deploy.R > future.batchtools:::testme("globals,manual") Test 'globals,manual' ... Sourcing 9 prologue scripts ... 01/09 prologue script '/home/hornik/tmp/R.check/r-devel-gcc/Work/build/Packages/future.batchtools/testme/_prologue/001.load.R' 02/09 prologue script '/home/hornik/tmp/R.check/r-devel-gcc/Work/build/Packages/future.batchtools/testme/_prologue/002.record-state.R' 03/09 prologue script '/home/hornik/tmp/R.check/r-devel-gcc/Work/build/Packages/future.batchtools/testme/_prologue/030.imports.R' 04/09 prologue script '/home/hornik/tmp/R.check/r-devel-gcc/Work/build/Packages/future.batchtools/testme/_prologue/050.utils.R' 05/09 prologue script '/home/hornik/tmp/R.check/r-devel-gcc/Work/build/Packages/future.batchtools/testme/_prologue/090.context.R' 06/09 prologue script '/home/hornik/tmp/R.check/r-devel-gcc/Work/build/Packages/future.batchtools/testme/_prologue/090.options.R' 07/09 prologue script '/home/hornik/tmp/R.check/r-devel-gcc/Work/build/Packages/future.batchtools/testme/_prologue/091.envvars.R' 08/09 prologue script '/home/hornik/tmp/R.check/r-devel-gcc/Work/build/Packages/future.batchtools/testme/_prologue/099.future-setup.R' 09/09 prologue script '/home/hornik/tmp/R.check/r-devel-gcc/Work/build/Packages/future.batchtools/testme/_prologue/995.detrius-connections.R' Sourcing 9 prologue scripts ... done Running test script: '/home/hornik/tmp/R.check/r-devel-gcc/Work/build/Packages/future.batchtools/testme/test-globals,manual.R' > library(future) > plan(future.batchtools::batchtools_local) > message("*** Globals - manually ...") *** Globals - manually ... > message("*** Globals manually specified as named list ...") *** Globals manually specified as named list ... > globals <- list(a = 1, b = 2, sumtwo = function(x) x[1] + + x[2]) > attach_locally(globals) > v0 <- local({ + x <- 1:10 + sumtwo(a + b * x) + }) > message("*** Globals - automatic ...") *** Globals - automatic ... > attach_locally(globals) > f <- future({ + x <- 1:10 + sumtwo(a + b * x) + }, globals = TRUE) > rm(list = names(globals)) > y <- value(f) > print(y) [1] 8 > stopifnot(all.equal(y, v0)) > attach_locally(globals) > y %<-% { + x <- 1:10 + sumtwo(a + b * x) + } %globals% TRUE > rm(list = names(globals)) > print(y) [1] 8 > stopifnot(all.equal(y, v0)) > y %<-% { + 1 + } %globals% FALSE > print(y) [1] 1 > stopifnot(identical(y, 1)) > attach_locally(globals) > f <- future({ + x <- 1:10 + sumtwo(a + b * x) + }, globals = FALSE) > rm(list = names(globals)) > y <- tryCatch(value(f), error = identity) Warning in delete.BatchtoolsFuture(future) : Will not remove batchtools registry, because the status of the batchtools was 'error', 'defined', 'finished', 'started', 'submitted' and future backend argument 'delete' is 'on-success': '/tmp/RtmpQK3S19/.future/20260423_163647-QK3S19/batchtools_1523950563' > if (!inherits(f, c("SequentialFuture", "MulticoreFuture"))) { + stopifnot(inherits(y, "simpleError")) + } Error: inherits(y, "simpleError") is not TRUE Execution halted Warning in delete.BatchtoolsFuture(f, onRunning = "skip", onMissing = "ignore", : Will not remove batchtools registry, because the status of the batchtools was 'error', 'defined', 'finished', 'started', 'submitted' and future backend argument 'delete' is 'on-success': '/tmp/RtmpQK3S19/.future/20260423_163647-QK3S19/batchtools_1523950563' Flavor: r-devel-linux-x86_64-debian-gcc

Version: 0.21.0
Check: tests
Result: ERROR Running ‘test-BatchtoolsFuture,gc.R’ [8s/11s] Running ‘test-BatchtoolsFuture.R’ [9s/13s] Running ‘test-BatchtoolsFutureError.R’ [10s/12s] Running ‘test-batchtools_bash.R’ Running ‘test-batchtools_custom.R’ [17s/24s] Running ‘test-batchtools_hpc.R’ Running ‘test-batchtools_interactive.R’ Running ‘test-batchtools_local.R’ [14s/15s] Running ‘test-batchtools_multicore.R’ Running ‘test-batchtools_ssh.R’ Running ‘test-batchtools_template.R’ Running ‘test-demo.R’ [12s/14s] Running ‘test-dotdotdot.R’ [15s/20s] Running ‘test-future,labels.R’ [12s/13s] Running ‘test-future,lazy.R’ Running ‘test-globals,formulas.R’ [31s/34s] Running ‘test-globals,manual.R’ [13s/13s] Running ‘test-globals,subassignment.R’ [21s/23s] Running ‘test-globals,tricky.R’ [27s/28s] Running ‘test-nbrOfWorkers.R’ Running ‘test-plan.R’ Running ‘test-resources_OP.R’ Running ‘test-rng.R’ [26s/28s] Running ‘test-stdout.R’ [18s/19s] Running ‘test-utils.R’ Running ‘test-zzz,future_lapply.R’ [46s/50s] Running ‘test-zzz.onUnload.R’ Running the tests in ‘tests/test-globals,manual.R’ failed. Complete output: > ## This runs testme test script inst/testme/test-globals,manual.R > ## Don't edit - it was autogenerated by inst/testme/deploy.R > future.batchtools:::testme("globals,manual") Test 'globals,manual' ... Sourcing 9 prologue scripts ... 01/09 prologue script '/data/gannet/ripley/R/packages/tests-clang/future.batchtools.Rcheck/future.batchtools/testme/_prologue/001.load.R' 02/09 prologue script '/data/gannet/ripley/R/packages/tests-clang/future.batchtools.Rcheck/future.batchtools/testme/_prologue/002.record-state.R' 03/09 prologue script '/data/gannet/ripley/R/packages/tests-clang/future.batchtools.Rcheck/future.batchtools/testme/_prologue/030.imports.R' 04/09 prologue script '/data/gannet/ripley/R/packages/tests-clang/future.batchtools.Rcheck/future.batchtools/testme/_prologue/050.utils.R' 05/09 prologue script '/data/gannet/ripley/R/packages/tests-clang/future.batchtools.Rcheck/future.batchtools/testme/_prologue/090.context.R' 06/09 prologue script '/data/gannet/ripley/R/packages/tests-clang/future.batchtools.Rcheck/future.batchtools/testme/_prologue/090.options.R' 07/09 prologue script '/data/gannet/ripley/R/packages/tests-clang/future.batchtools.Rcheck/future.batchtools/testme/_prologue/091.envvars.R' 08/09 prologue script '/data/gannet/ripley/R/packages/tests-clang/future.batchtools.Rcheck/future.batchtools/testme/_prologue/099.future-setup.R' 09/09 prologue script '/data/gannet/ripley/R/packages/tests-clang/future.batchtools.Rcheck/future.batchtools/testme/_prologue/995.detrius-connections.R' Sourcing 9 prologue scripts ... done Running test script: '/data/gannet/ripley/R/packages/tests-clang/future.batchtools.Rcheck/future.batchtools/testme/test-globals,manual.R' > library(future) > plan(future.batchtools::batchtools_local) > message("*** Globals - manually ...") *** Globals - manually ... > message("*** Globals manually specified as named list ...") *** Globals manually specified as named list ... > globals <- list(a = 1, b = 2, sumtwo = function(x) x[1] + + x[2]) > attach_locally(globals) > v0 <- local({ + x <- 1:10 + sumtwo(a + b * x) + }) > message("*** Globals - automatic ...") *** Globals - automatic ... > attach_locally(globals) > f <- future({ + x <- 1:10 + sumtwo(a + b * x) + }, globals = TRUE) > rm(list = names(globals)) > y <- value(f) > print(y) [1] 8 > stopifnot(all.equal(y, v0)) > attach_locally(globals) > y %<-% { + x <- 1:10 + sumtwo(a + b * x) + } %globals% TRUE > rm(list = names(globals)) > print(y) [1] 8 > stopifnot(all.equal(y, v0)) > y %<-% { + 1 + } %globals% FALSE > print(y) [1] 1 > stopifnot(identical(y, 1)) > attach_locally(globals) > f <- future({ + x <- 1:10 + sumtwo(a + b * x) + }, globals = FALSE) > rm(list = names(globals)) > y <- tryCatch(value(f), error = identity) Warning in delete.BatchtoolsFuture(future) : Will not remove batchtools registry, because the status of the batchtools was 'error', 'defined', 'finished', 'started', 'submitted' and future backend argument 'delete' is 'on-success': '/tmp/RtmphkF0WX/working_dir/RtmpnbrLA8/.future/20260423_101433-nbrLA8/batchtools_1641249398' > if (!inherits(f, c("SequentialFuture", "MulticoreFuture"))) { + stopifnot(inherits(y, "simpleError")) + } Error: inherits(y, "simpleError") is not TRUE Execution halted Warning in delete.BatchtoolsFuture(f, onRunning = "skip", onMissing = "ignore", : Will not remove batchtools registry, because the status of the batchtools was 'error', 'defined', 'finished', 'started', 'submitted' and future backend argument 'delete' is 'on-success': '/tmp/RtmphkF0WX/working_dir/RtmpnbrLA8/.future/20260423_101433-nbrLA8/batchtools_1641249398' Flavor: r-devel-linux-x86_64-fedora-clang

Version: 0.21.0
Check: tests
Result: ERROR Running ‘test-BatchtoolsFuture,gc.R’ [8s/11s] Running ‘test-BatchtoolsFuture.R’ [10s/12s] Running ‘test-BatchtoolsFutureError.R’ [11s/13s] Running ‘test-batchtools_bash.R’ Running ‘test-batchtools_custom.R’ [18s/24s] Running ‘test-batchtools_hpc.R’ Running ‘test-batchtools_interactive.R’ Running ‘test-batchtools_local.R’ [16s/20s] Running ‘test-batchtools_multicore.R’ Running ‘test-batchtools_ssh.R’ Running ‘test-batchtools_template.R’ Running ‘test-demo.R’ [14s/18s] Running ‘test-dotdotdot.R’ [15s/18s] Running ‘test-future,labels.R’ [13s/19s] Running ‘test-future,lazy.R’ [8s/11s] Running ‘test-globals,formulas.R’ [33s/48s] Running ‘test-globals,manual.R’ [14s/18s] Running ‘test-globals,subassignment.R’ [24s/33s] Running ‘test-globals,tricky.R’ [28s/38s] Running ‘test-nbrOfWorkers.R’ Running ‘test-plan.R’ [9s/11s] Running ‘test-resources_OP.R’ Running ‘test-rng.R’ [29s/33s] Running ‘test-stdout.R’ [19s/21s] Running ‘test-utils.R’ Running ‘test-zzz,future_lapply.R’ [48s/56s] Running ‘test-zzz.onUnload.R’ Running the tests in ‘tests/test-globals,manual.R’ failed. Complete output: > ## This runs testme test script inst/testme/test-globals,manual.R > ## Don't edit - it was autogenerated by inst/testme/deploy.R > future.batchtools:::testme("globals,manual") Test 'globals,manual' ... Sourcing 9 prologue scripts ... 01/09 prologue script '/data/gannet/ripley/R/packages/tests-devel/future.batchtools.Rcheck/future.batchtools/testme/_prologue/001.load.R' 02/09 prologue script '/data/gannet/ripley/R/packages/tests-devel/future.batchtools.Rcheck/future.batchtools/testme/_prologue/002.record-state.R' 03/09 prologue script '/data/gannet/ripley/R/packages/tests-devel/future.batchtools.Rcheck/future.batchtools/testme/_prologue/030.imports.R' 04/09 prologue script '/data/gannet/ripley/R/packages/tests-devel/future.batchtools.Rcheck/future.batchtools/testme/_prologue/050.utils.R' 05/09 prologue script '/data/gannet/ripley/R/packages/tests-devel/future.batchtools.Rcheck/future.batchtools/testme/_prologue/090.context.R' 06/09 prologue script '/data/gannet/ripley/R/packages/tests-devel/future.batchtools.Rcheck/future.batchtools/testme/_prologue/090.options.R' 07/09 prologue script '/data/gannet/ripley/R/packages/tests-devel/future.batchtools.Rcheck/future.batchtools/testme/_prologue/091.envvars.R' 08/09 prologue script '/data/gannet/ripley/R/packages/tests-devel/future.batchtools.Rcheck/future.batchtools/testme/_prologue/099.future-setup.R' 09/09 prologue script '/data/gannet/ripley/R/packages/tests-devel/future.batchtools.Rcheck/future.batchtools/testme/_prologue/995.detrius-connections.R' Sourcing 9 prologue scripts ... done Running test script: '/data/gannet/ripley/R/packages/tests-devel/future.batchtools.Rcheck/future.batchtools/testme/test-globals,manual.R' > library(future) > plan(future.batchtools::batchtools_local) > message("*** Globals - manually ...") *** Globals - manually ... > message("*** Globals manually specified as named list ...") *** Globals manually specified as named list ... > globals <- list(a = 1, b = 2, sumtwo = function(x) x[1] + + x[2]) > attach_locally(globals) > v0 <- local({ + x <- 1:10 + sumtwo(a + b * x) + }) > message("*** Globals - automatic ...") *** Globals - automatic ... > attach_locally(globals) > f <- future({ + x <- 1:10 + sumtwo(a + b * x) + }, globals = TRUE) > rm(list = names(globals)) > y <- value(f) > print(y) [1] 8 > stopifnot(all.equal(y, v0)) > attach_locally(globals) > y %<-% { + x <- 1:10 + sumtwo(a + b * x) + } %globals% TRUE > rm(list = names(globals)) > print(y) [1] 8 > stopifnot(all.equal(y, v0)) > y %<-% { + 1 + } %globals% FALSE > print(y) [1] 1 > stopifnot(identical(y, 1)) > attach_locally(globals) > f <- future({ + x <- 1:10 + sumtwo(a + b * x) + }, globals = FALSE) > rm(list = names(globals)) > y <- tryCatch(value(f), error = identity) Warning in delete.BatchtoolsFuture(future) : Will not remove batchtools registry, because the status of the batchtools was 'error', 'defined', 'finished', 'started', 'submitted' and future backend argument 'delete' is 'on-success': '/tmp/RtmpLH7c4o/working_dir/Rtmpnyw07N/.future/20260423_095612-nyw07N/batchtools_1181944045' > if (!inherits(f, c("SequentialFuture", "MulticoreFuture"))) { + stopifnot(inherits(y, "simpleError")) + } Error: inherits(y, "simpleError") is not TRUE Execution halted Warning in delete.BatchtoolsFuture(f, onRunning = "skip", onMissing = "ignore", : Will not remove batchtools registry, because the status of the batchtools was 'error', 'defined', 'finished', 'started', 'submitted' and future backend argument 'delete' is 'on-success': '/tmp/RtmpLH7c4o/working_dir/Rtmpnyw07N/.future/20260423_095612-nyw07N/batchtools_1181944045' Flavor: r-devel-linux-x86_64-fedora-gcc