Last updated on 2026-04-23 13:51:31 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 | 4.10 | 188.28 | 192.38 | 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 | 9.00 | 260.00 | 269.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 | 9.00 | 255.00 | 264.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 |
Version: 0.21.0
Check: tests
Result: ERROR
Running ‘test-BatchtoolsFuture,gc.R’ [4s/4s]
Running ‘test-BatchtoolsFuture.R’ [4s/4s]
Running ‘test-BatchtoolsFutureError.R’ [5s/6s]
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/9s]
Running ‘test-batchtools_multicore.R’ [1s/1s]
Running ‘test-batchtools_ssh.R’ [3s/4s]
Running ‘test-batchtools_template.R’ [1s/1s]
Running ‘test-demo.R’ [6s/8s]
Running ‘test-dotdotdot.R’ [6s/9s]
Running ‘test-future,labels.R’ [6s/8s]
Running ‘test-future,lazy.R’ [3s/5s]
Running ‘test-globals,formulas.R’ [13s/20s]
Running ‘test-globals,manual.R’ [5s/8s]
Running ‘test-globals,subassignment.R’ [10s/14s]
Running ‘test-globals,tricky.R’ [11s/16s]
Running ‘test-nbrOfWorkers.R’ [1s/2s]
Running ‘test-plan.R’ [3s/4s]
Running ‘test-resources_OP.R’ [2s/3s]
Running ‘test-rng.R’ [12s/18s]
Running ‘test-stdout.R’ [8s/11s]
Running ‘test-utils.R’ [1s/1s]
Running ‘test-zzz,future_lapply.R’ [20s/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/RtmpFdXrjC/.future/20260422_165527-FdXrjC/batchtools_2059701436'
> 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/RtmpFdXrjC/.future/20260422_165527-FdXrjC/batchtools_2059701436'
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