Last updated on 2025-11-03 12:49:52 CET.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags | 
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 0.21.0 | 5.60 | 266.14 | 271.74 | OK | |
| r-devel-linux-x86_64-debian-gcc | 0.21.0 | 3.66 | 185.92 | 189.58 | OK | |
| r-devel-linux-x86_64-fedora-clang | 0.21.0 | 30.00 | 412.47 | 442.47 | OK | |
| r-devel-linux-x86_64-fedora-gcc | 0.21.0 | 13.00 | ERROR | |||
| r-devel-windows-x86_64 | 0.21.0 | 9.00 | 253.00 | 262.00 | OK | |
| r-patched-linux-x86_64 | 0.21.0 | 5.38 | 247.28 | 252.66 | OK | |
| r-release-linux-x86_64 | 0.21.0 | 5.90 | 242.63 | 248.53 | OK | |
| r-release-macos-arm64 | 0.21.0 | 3.00 | 150.00 | 153.00 | OK | |
| r-release-macos-x86_64 | 0.21.0 | 5.00 | 271.00 | 276.00 | OK | |
| r-release-windows-x86_64 | 0.21.0 | 8.00 | 246.00 | 254.00 | OK | |
| r-oldrel-macos-arm64 | 0.21.0 | 3.00 | 161.00 | 164.00 | OK | |
| r-oldrel-macos-x86_64 | 0.21.0 | 6.00 | 281.00 | 287.00 | OK | |
| r-oldrel-windows-x86_64 | 0.21.0 | 11.00 | 315.00 | 326.00 | OK | 
Version: 0.21.0
Check: tests
Result: ERROR
    Running ‘test-BatchtoolsFuture,gc.R’ [8s/12s]
    Running ‘test-BatchtoolsFuture.R’ [11s/16s]
    Running ‘test-BatchtoolsFutureError.R’ [11s/16s]
    Running ‘test-batchtools_bash.R’
    Running ‘test-batchtools_custom.R’ [19s/27s]
    Running ‘test-batchtools_hpc.R’
    Running ‘test-batchtools_interactive.R’
    Running ‘test-batchtools_local.R’ [16s/22s]
    Running ‘test-batchtools_multicore.R’
    Running ‘test-batchtools_ssh.R’ [10s/20s]
    Running ‘test-batchtools_template.R’
    Running ‘test-demo.R’ [14s/21s]
    Running ‘test-dotdotdot.R’ [14s/20s]
    Running ‘test-future,labels.R’ [13s/19s]
    Running ‘test-future,lazy.R’ [8s/12s]
    Running ‘test-globals,formulas.R’ [32s/47s]
    Running ‘test-globals,manual.R’ [10s/15s]
    Running ‘test-globals,subassignment.R’ [24s/36s]
    Running ‘test-globals,tricky.R’ [27s/43s]
    Running ‘test-nbrOfWorkers.R’
    Running ‘test-plan.R’ [9s/13s]
    Running ‘test-resources_OP.R’
    Running ‘test-rng.R’ [28s/40s]
    Running ‘test-stdout.R’ [19s/26s]
    Running ‘test-utils.R’
    Running ‘test-zzz,future_lapply.R’ [48s/66s]
    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)
    Error: future::evalFuture() failed on gannet.stats.ox.ac.uk (pid 66447) at 2025-11-02T07:08:31. Package 'future' is not available (worker library path: '/data/gannet/ripley/R/packages/tests-devel/future.batchtools.Rcheck', '/data/gannet/ripley/R/test-dev', '/data/gannet/ripley/R/test-BioCdata', '/data/gannet/ripley/R/R-devel/library'). Possible other reasons: could not find function "evalFutureInternal"
    Execution halted
Flavor: r-devel-linux-x86_64-fedora-gcc