R Under development (unstable) (2025-11-15 r89024 ucrt) -- "Unsuffered Consequences" Copyright (C) 2025 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > ## This runs testme test script inst/testme/test-tweak.R > ## Don't edit - it was autogenerated by inst/testme/deploy.R > future:::testme("tweak") Test 'tweak' ... Sourcing 9 prologue scripts ... 01/09 prologue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_prologue/001.load.R' 02/09 prologue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_prologue/002.record-state.R' 03/09 prologue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_prologue/030.imports.R' 04/09 prologue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_prologue/050.utils.R' 05/09 prologue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_prologue/090.context.R' 06/09 prologue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_prologue/090.options.R' 07/09 prologue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_prologue/091.envvars.R' 08/09 prologue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_prologue/099.future-setup.R' 09/09 prologue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_prologue/995.detrius-connections.R' Sourcing 9 prologue scripts ... done Running test script: 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/test-tweak.R' > message("*** Tweaking future strategies ...") *** Tweaking future strategies ... > message("*** y <- tweak(future::sequential) ...") *** y <- tweak(future::sequential) ... > sequential2 <- future::tweak(future::sequential) > print(args(sequential2)) function (..., envir = parent.frame()) NULL > stopifnot(identical(sequential2, future::sequential)) > stopifnot(!inherits(sequential2, "tweaked")) > message("*** y <- tweak(future::sequential, abc = FALSE) ...") *** y <- tweak(future::sequential, abc = FALSE) ... > sequential2 <- future::tweak(future::sequential, abc = FALSE) Warning: Detected 1 unknown future arguments: 'abc' > print(args(sequential2)) function (..., abc = FALSE, envir = parent.frame()) NULL > stopifnot(!identical(sequential2, future::sequential)) > stopifnot(inherits(sequential2, "tweaked")) > stopifnot(identical(formals(sequential2)$abc, FALSE)) > message("*** y <- tweak('sequential', abc = FALSE) ...") *** y <- tweak('sequential', abc = FALSE) ... > sequential2 <- future::tweak("sequential", abc = FALSE) Warning: Detected 1 unknown future arguments: 'abc' > print(args(sequential2)) function (..., abc = FALSE, envir = parent.frame()) NULL > stopifnot(!identical(sequential2, future::sequential)) > stopifnot(inherits(sequential2, "tweaked")) > stopifnot(identical(formals(sequential2)$abc, FALSE)) > library(future) [23:15:45.210] Option 'future.startup.script': TRUE [23:15:45.211] Future startup scripts considered: '.future.R', '~/.future.R' [23:15:45.212] Future startup scripts found: > message("*** y <- tweak(sequential, abc = FALSE) ...") *** y <- tweak(sequential, abc = FALSE) ... > sequential2 <- future::tweak(sequential, abc = FALSE) Warning: Detected 1 unknown future arguments: 'abc' > print(args(sequential2)) function (..., abc = FALSE, envir = parent.frame()) NULL > stopifnot(!identical(sequential2, future::sequential)) > stopifnot(inherits(sequential2, "tweaked")) > stopifnot(identical(formals(sequential2)$abc, FALSE)) > message("*** y <- tweak('sequential', abc = FALSE) ...") *** y <- tweak('sequential', abc = FALSE) ... > sequential2 <- future::tweak("sequential", abc = FALSE) Warning: Detected 1 unknown future arguments: 'abc' > print(args(sequential2)) function (..., abc = FALSE, envir = parent.frame()) NULL > stopifnot(!identical(sequential2, future::sequential)) > stopifnot(inherits(sequential2, "tweaked")) > stopifnot(identical(formals(sequential2)$abc, FALSE)) > message("*** y <- tweak('sequential', abc = FALSE, abc = 1, def = TRUE) ...") *** y <- tweak('sequential', abc = FALSE, abc = 1, def = TRUE) ... > res <- tryCatch({ + sequential2 <- future::tweak("sequential", abc = FALSE, abc = 1, + def = TRUE) + }, warning = function(w) { + w .... [TRUNCATED] > stopifnot(inherits(res, "warning")) > sequential2 <- future::tweak("sequential", abc = FALSE, + abc = 1, def = TRUE) Warning: Detected 2 unknown future arguments: 'abc', 'def' > print(args(sequential2)) function (..., abc = FALSE, def = TRUE, envir = parent.frame()) NULL > stopifnot(!identical(sequential2, future::sequential)) > stopifnot(inherits(sequential2, "tweaked")) > stopifnot(identical(formals(sequential2)$abc, FALSE)) > message("*** y <- tweak(cluster, rscript_startup = quote(...)) ...") *** y <- tweak(cluster, rscript_startup = quote(...)) ... > cl <- 42 > cluster2 <- tweak(cluster, workers = cl, rscript_startup = quote(options(abc = 42))) Warning: Detected 1 unknown future arguments: 'rscript_startup' > print(args(cluster2)) function (..., workers = 42L, rscript_startup = quote(options(abc = 42L))) NULL > stopifnot(!identical(cluster2, future::cluster)) > stopifnot(inherits(cluster2, "tweaked")) > formals2 <- formals(cluster2) > stopifnot(identical(formals2$workers, cl)) > stopifnot("rscript_startup" %in% names(formals2)) > rscript_startup <- formals2$rscript_startup > stopifnot(!is.null(rscript_startup), is.language(rscript_startup), + is.call(rscript_startup)) > value <- eval(rscript_startup) > stopifnot(is.language(value), is.call(value)) > message("*** plan() - tweak without introducting package dependencies ...") *** plan() - tweak without introducting package dependencies ... > if (!covr_testing && requireNamespace("grid")) { + local({ + cl <- makeClusterPSOCK(1) + on.exit(parallel:::stopCluster(cl)) + .... [TRUNCATED] Loading required namespace: grid [23:15:46.027] plan(<'call'>, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:15:46.028] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... [23:15:46.028] | : all.equal() for FutureStrategyList ... [23:15:46.029] | : . New stack: [23:15:46.029] | : . List of 1 [23:15:46.029] | : . $ :function (..., workers = list(list(con = 4L, host = "localhost", rank = 0L, [23:15:46.029] | : . session_info = list(process = list(pid = 25240L), r = list(platform = "x86_64-w64-mingw32", [23:15:46.029] | : . arch = "x86_64", os = "mingw32", crt = "ucrt", system = "x86_64, mingw32", [23:15:46.029] | : . status = "Under development (unstable)", major = "4", minor = "6.0", [23:15:46.029] | : . year = "2025", month = "11", day = "15", `svn rev` = "89024", language = "R", [23:15:46.029] | : . version.string = "R Under development (unstable) (2025-11-15 r89024 ucrt)", [23:15:46.029] | : . nickname = "Unsuffered Consequences", os.type = "windows"), system = list( [23:15:46.029] | : . sysname = "Windows", release = "Server x64", version = "build 20348", [23:15:46.029] | : . nodename = "CRANWIN3", machine = "x86-64", login = "CRAN", user = "CRAN", [23:15:46.029] | : . effective_user = "CRAN", udomain = "CRANWIN3"), l10n = list(MBCS = TRUE, [23:15:46.029] | : . `UTF-8` = TRUE, `Latin-1` = FALSE, codepage = 65001L, system.codepage = 65001L), [23:15:46.029] | : . extSoftVersion = c(zlib = "1.3.1", bzlib = "1.0.8, 13-Jul-2019", [23:15:46.029] | : . xz = "5.8.1", libdeflate = "1.24", zstd = "1.5.7", PCRE = "10.46 2025-08-27", [23:15:46.029] | : . ICU = "77.1", TRE = "TRE 0.8.0 R_fixes (BSD)", iconv = "win_iconv", [23:15:46.029] | : . readline = "", BLAS = ""), pwd = "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests", [23:15:46.029] | : . tempdir = "D:\\temp\\2025_11_16_23_10_16_9296\\RtmpmiDN8r", libs = c("D:/temp/2025_11_16_23_10_16_9296/RtmpOmYtQ8/RLIBS_10f20545821a2", [23:15:46.029] | : . ..- attr(*, "class")= chr [1:5] "tweaked" "cluster" "multiprocess" "future" ... [23:15:46.029] | : . ..- attr(*, "init")= logi TRUE [23:15:46.029] | : . ..- attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [23:15:46.029] | : . earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [23:15:46.029] | : . .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [23:15:46.029] | : . ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [23:15:46.029] | : . ..- attr(*, "tweaks")=List of 1 [23:15:46.029] | : . .. ..$ workers:List of 1 [23:15:46.029] | : . .. .. ..$ :List of 4 [23:15:46.029] | : . .. .. .. ..$ con : 'sockconn' int 4 [23:15:46.029] | : . .. .. .. .. ..- attr(*, "conn_id")= [23:15:46.029] | : . .. .. .. ..$ host : chr "localhost" [23:15:46.029] | : . .. .. .. .. ..- attr(*, "localhost")= logi TRUE [23:15:46.029] | : . .. .. .. ..$ rank : int 0 [23:15:46.029] | : . .. .. .. ..$ session_info:List of 9 [23:15:46.029] | : . .. .. .. .. ..$ process :List of 1 [23:15:46.029] | : . .. .. .. .. .. ..$ pid: int 25240 [23:15:46.029] | : . .. .. .. .. ..$ r :List of 16 [23:15:46.029] | : . .. .. .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [23:15:46.029] | : . .. .. .. .. .. ..$ arch : chr "x86_64" [23:15:46.029] | : . .. .. .. .. .. ..$ os : chr "mingw32" [23:15:46.029] | : . .. .. .. .. .. ..$ crt : chr "ucrt" [23:15:46.029] | : . .. .. .. .. .. ..$ system : chr "x86_64, mingw32" [23:15:46.029] | : . .. .. .. .. .. ..$ status : chr "Under development (unstable)" [23:15:46.029] | : . .. .. .. .. .. ..$ major : chr "4" [23:15:46.029] | : . .. .. .. .. .. ..$ minor : chr "6.0" [23:15:46.029] | : . .. .. .. .. .. ..$ year : chr "2025" [23:15:46.029] | : . .. .. .. .. .. ..$ month : chr "11" [23:15:46.029] | : . .. .. .. .. .. ..$ day : chr "15" [23:15:46.029] | : . .. .. .. .. .. ..$ svn rev : chr "89024" [23:15:46.029] | : . .. .. .. .. .. ..$ language : chr "R" [23:15:46.029] | : . .. .. .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-11-15 r89024 ucrt)" [23:15:46.029] | : . .. .. .. .. .. ..$ nickname : chr "Unsuffered Consequences" [23:15:46.029] | : . .. .. .. .. .. ..$ os.type : chr "windows" [23:15:46.029] | : . .. .. .. .. ..$ system :List of 9 [23:15:46.029] | : . .. .. .. .. .. ..$ sysname : chr "Windows" [23:15:46.029] | : . .. .. .. .. .. ..$ release : chr "Server x64" [23:15:46.029] | : . .. .. .. .. .. ..$ version : chr "build 20348" [23:15:46.029] | : . .. .. .. .. .. ..$ nodename : chr "CRANWIN3" [23:15:46.029] | : . .. .. .. .. .. ..$ machine : chr "x86-64" [23:15:46.029] | : . .. .. .. .. .. ..$ login : chr "CRAN" [23:15:46.029] | : . .. .. .. .. .. ..$ user : chr "CRAN" [23:15:46.029] | : . .. .. .. .. .. ..$ effective_user: chr "CRAN" [23:15:46.029] | : . .. .. .. .. .. ..$ udomain : chr "CRANWIN3" [23:15:46.029] | : . .. .. .. .. ..$ l10n :List of 5 [23:15:46.029] | : . .. .. .. .. .. ..$ MBCS : logi TRUE [23:15:46.029] | : . .. .. .. .. .. ..$ UTF-8 : logi TRUE [23:15:46.029] | : . .. .. .. .. .. ..$ Latin-1 : logi FALSE [23:15:46.029] | : . .. .. .. .. .. ..$ codepage : int 65001 [23:15:46.029] | : . .. .. .. .. .. ..$ system.codepage: int 65001 [23:15:46.029] | : . .. .. .. .. ..$ extSoftVersion: Named chr [1:11] "1.3.1" "1.0.8, 13-Jul-2019" "5.8.1" "1.24" ... [23:15:46.029] | : . .. .. .. .. .. ..- attr(*, "names")= chr [1:11] "zlib" "bzlib" "xz" "libdeflate" ... [23:15:46.029] | : . .. .. .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [23:15:46.029] | : . .. .. .. .. ..$ tempdir : chr "D:\\temp\\2025_11_16_23_10_16_9296\\RtmpmiDN8r" [23:15:46.029] | : . .. .. .. .. ..$ libs : chr [1:2] "D:/temp/2025_11_16_23_10_16_9296/RtmpOmYtQ8/RLIBS_10f20545821a2" "D:/RCompile/recent/R/library" [23:15:46.029] | : . .. .. .. .. ..$ pkgs : NULL [23:15:46.029] | : . .. .. .. ..- attr(*, "options")=List of 35 [23:15:46.029] | : . .. .. .. .. ..$ worker : chr "localhost" [23:15:46.029] | : . .. .. .. .. .. ..- attr(*, "localhost")= logi TRUE [23:15:46.029] | : . .. .. .. .. ..$ master : chr "localhost" [23:15:46.029] | : . .. .. .. .. ..$ port : int 23755 [23:15:46.029] | : . .. .. .. .. ..$ connectTimeout : num 120 [23:15:46.029] | : . .. .. .. .. ..$ timeout : num 120 [23:15:46.029] | : . .. .. .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [23:15:46.029] | : . .. .. .. .. ..$ homogeneous : logi TRUE [23:15:46.029] | : . .. .. .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:48988:CRANWIN3:CRAN"| __truncated__ [23:15:46.029] | : . .. .. .. .. ..$ rscript_envs : NULL [23:15:46.029] | : . .. .. .. .. ..$ rscript_libs : NULL [23:15:46.029] | : . .. .. .. .. ..$ rscript_startup : NULL [23:15:46.029] | : . .. .. .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [23:15:46.029] | : . .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [23:15:46.029] | : . .. .. .. .. ..$ methods : logi TRUE [23:15:46.029] | : . .. .. .. .. ..$ socketOptions : chr "no-delay" [23:15:46.029] | : . .. .. .. .. ..$ useXDR : logi FALSE [23:15:46.029] | : . .. .. .. .. ..$ outfile : chr "/dev/null" [23:15:46.029] | : . .. .. .. .. ..$ renice : int NA [23:15:46.029] | : . .. .. .. .. ..$ rshcmd : NULL [23:15:46.029] | : . .. .. .. .. ..$ user : chr(0) [23:15:46.029] | : . .. .. .. .. ..$ revtunnel : logi FALSE [23:15:46.029] | : . .. .. .. .. ..$ rshlogfile : NULL [23:15:46.029] | : . .. .. .. .. ..$ rshopts : chr(0) [23:15:46.029] | : . .. .. .. .. ..$ rank : int 0 [23:15:46.029] | : . .. .. .. .. ..$ manual : logi FALSE [23:15:46.029] | : . .. .. .. .. ..$ dryrun : logi FALSE [23:15:46.029] | : . .. .. .. .. ..$ quiet : logi FALSE [23:15:46.029] | : . .. .. .. .. ..$ setup_strategy : chr "parallel" [23:15:46.029] | : . .. .. .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [23:15:46.029] | : . .. .. .. .. ..$ rshcmd_label : NULL [23:15:46.029] | : . .. .. .. .. ..$ rsh_call : NULL [23:15:46.029] | : . .. .. .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [23:15:46.029] | : . .. .. .. .. ..$ localMachine : logi TRUE [23:15:46.029] | : . .. .. .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [23:15:46.029] | : . master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [23:15:46.029] | : . 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [23:15:46.029] | : . 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [23:15:46.029] | : . rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [23:15:46.029] | : . "cmd", "sh", "none"), default_packages = c("datasets", "utils", [23:15:46.029] | : . "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [23:15:46.029] | : . socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [23:15:46.029] | : . "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [23:15:46.029] | : . FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [23:15:46.029] | : . NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [23:15:46.029] | : . NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [23:15:46.029] | : . setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [23:15:46.029] | : . "parallel"), calls = getOption2("parallelly.makeNodePSOCK.calls", [23:15:46.029] | : . FALSE), action = c("launch", "options"), verbose = FALSE) [23:15:46.029] | : . .. .. .. .. ..$ arguments :List of 29 [23:15:46.029] | : . .. .. .. .. .. ..$ worker : chr "localhost" [23:15:46.029] | : . .. .. .. .. .. ..$ master : NULL [23:15:46.029] | : . .. .. .. .. .. ..$ port : int 23755 [23:15:46.029] | : . .. .. .. .. .. ..$ connectTimeout : num 120 [23:15:46.029] | : . .. .. .. .. .. ..$ timeout : num 120 [23:15:46.029] | : . .. .. .. .. .. ..$ rscript : NULL [23:15:46.029] | : . .. .. .. .. .. ..$ homogeneous : NULL [23:15:46.029] | : . .. .. .. .. .. ..$ rscript_args : NULL [23:15:46.029] | : . .. .. .. .. .. ..$ rscript_envs : NULL [23:15:46.029] | : . .. .. .. .. .. ..$ rscript_libs : NULL [23:15:46.029] | : . .. .. .. .. .. ..$ rscript_startup : NULL [23:15:46.029] | : . .. .. .. .. .. ..$ rscript_sh : chr "auto" [23:15:46.029] | : . .. .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [23:15:46.029] | : . .. .. .. .. .. ..$ methods : logi TRUE [23:15:46.029] | : . .. .. .. .. .. ..$ socketOptions : chr "no-delay" [23:15:46.029] | : . .. .. .. .. .. ..$ useXDR : logi FALSE [23:15:46.029] | : . .. .. .. .. .. ..$ outfile : chr "/dev/null" [23:15:46.029] | : . .. .. .. .. .. ..$ renice : int NA [23:15:46.029] | : . .. .. .. .. .. ..$ rshcmd : NULL [23:15:46.029] | : . .. .. .. .. .. ..$ user : NULL [23:15:46.029] | : . .. .. .. .. .. ..$ revtunnel : logi NA [23:15:46.029] | : . .. .. .. .. .. ..$ rshlogfile : NULL [23:15:46.029] | : . .. .. .. .. .. ..$ rshopts : NULL [23:15:46.029] | : . .. .. .. .. .. ..$ rank : int 1 [23:15:46.029] | : . .. .. .. .. .. ..$ manual : logi FALSE [23:15:46.029] | : . .. .. .. .. .. ..$ dryrun : logi FALSE [23:15:46.029] | : . .. .. .. .. .. ..$ quiet : logi FALSE [23:15:46.029] | : . .. .. .. .. .. ..$ setup_strategy : chr "parallel" [23:15:46.029] | : . .. .. .. .. .. ..$ calls : logi FALSE [23:15:46.029] | : . .. .. .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [23:15:46.029] | : . .. .. .. ..- attr(*, "calls")=Dotted pair list of 16 [23:15:46.029] | : . .. .. .. .. ..$ : language future:::testme("tweak") [23:15:46.029] | : . .. .. .. .. ..$ : language source(file.path(path, "run.R")) [23:15:46.029] | : . .. .. .. .. ..$ : language withVisible(eval(ei, envir)) [23:15:46.029] | : . .. .. .. .. ..$ : language eval(ei, envir) [23:15:46.029] | : . .. .. .. .. ..$ : language eval(ei, envir) [23:15:46.029] | : . .. .. .. .. ..$ : language source(testme[["script"]], echo = TRUE) [23:15:46.029] | : . .. .. .. .. ..$ : language withVisible(eval(ei, envir)) [23:15:46.029] | : . .. .. .. .. ..$ : language eval(ei, envir) [23:15:46.029] | : . .. .. .. .. ..$ : language eval(ei, envir) [23:15:46.029] | : . .. .. .. .. ..$ : language local({ cl <- makeClusterPSOCK(1L) ... [23:15:46.029] | : . .. .. .. .. ..$ : language eval.parent(substitute(eval(quote(expr), envir))) [23:15:46.029] | : . .. .. .. .. ..$ : language eval(expr, p) [23:15:46.029] | : . .. .. .. .. ..$ : language eval(expr, p) [23:15:46.029] | : . .. .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [23:15:46.029] | : . .. .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [23:15:46.029] | : . .. .. .. .. ..$ : language makeClusterPSOCK(1L) [23:15:46.029] | : . .. .. .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [23:15:46.029] | : . .. .. ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [23:15:46.029] | : . ..- attr(*, "call")= language future::plan(future::cluster, workers = cl) [23:15:46.029] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:46.102] | : . Old stack: [23:15:46.103] | : . List of 1 [23:15:46.103] | : . $ :function (..., envir = parent.frame()) [23:15:46.103] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:15:46.103] | : . ..- attr(*, "init")= logi TRUE [23:15:46.103] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:46.103] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.103] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.103] | : . ..- attr(*, "call")= language plan(sequential) [23:15:46.103] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:46.109] | : . Not identical [23:15:46.109] | : . all.equal() for future ... [23:15:46.110] | : . ' List of 2 [23:15:46.110] | : . ' $ target :function (..., workers = list(list(con = 4L, host = "localhost", rank = 0L, [23:15:46.110] | : . ' session_info = list(process = list(pid = 25240L), r = list(platform = "x86_64-w64-mingw32", [23:15:46.110] | : . ' arch = "x86_64", os = "mingw32", crt = "ucrt", system = "x86_64, mingw32", [23:15:46.110] | : . ' status = "Under development (unstable)", major = "4", minor = "6.0", [23:15:46.110] | : . ' year = "2025", month = "11", day = "15", `svn rev` = "89024", language = "R", [23:15:46.110] | : . ' version.string = "R Under development (unstable) (2025-11-15 r89024 ucrt)", [23:15:46.110] | : . ' nickname = "Unsuffered Consequences", os.type = "windows"), system = list( [23:15:46.110] | : . ' sysname = "Windows", release = "Server x64", version = "build 20348", [23:15:46.110] | : . ' nodename = "CRANWIN3", machine = "x86-64", login = "CRAN", user = "CRAN", [23:15:46.110] | : . ' effective_user = "CRAN", udomain = "CRANWIN3"), l10n = list(MBCS = TRUE, [23:15:46.110] | : . ' `UTF-8` = TRUE, `Latin-1` = FALSE, codepage = 65001L, system.codepage = 65001L), [23:15:46.110] | : . ' extSoftVersion = c(zlib = "1.3.1", bzlib = "1.0.8, 13-Jul-2019", [23:15:46.110] | : . ' xz = "5.8.1", libdeflate = "1.24", zstd = "1.5.7", PCRE = "10.46 2025-08-27", [23:15:46.110] | : . ' ICU = "77.1", TRE = "TRE 0.8.0 R_fixes (BSD)", iconv = "win_iconv", [23:15:46.110] | : . ' readline = "", BLAS = ""), pwd = "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests", [23:15:46.110] | : . ' tempdir = "D:\\temp\\2025_11_16_23_10_16_9296\\RtmpmiDN8r", libs = c("D:/temp/2025_11_16_23_10_16_9296/RtmpOmYtQ8/RLIBS_10f20545821a2", [23:15:46.110] | : . ' ..- attr(*, "class")= chr [1:5] "tweaked" "cluster" "multiprocess" "future" ... [23:15:46.110] | : . ' ..- attr(*, "init")= logi TRUE [23:15:46.110] | : . ' ..- attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [23:15:46.110] | : . ' earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [23:15:46.110] | : . ' .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [23:15:46.110] | : . ' ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [23:15:46.110] | : . ' ..- attr(*, "tweaks")=List of 1 [23:15:46.110] | : . ' .. ..$ workers:List of 1 [23:15:46.110] | : . ' .. .. ..$ :List of 4 [23:15:46.110] | : . ' .. .. .. ..$ con : 'sockconn' int 4 [23:15:46.110] | : . ' .. .. .. .. ..- attr(*, "conn_id")= [23:15:46.110] | : . ' .. .. .. ..$ host : chr "localhost" [23:15:46.110] | : . ' .. .. .. .. ..- attr(*, "localhost")= logi TRUE [23:15:46.110] | : . ' .. .. .. ..$ rank : int 0 [23:15:46.110] | : . ' .. .. .. ..$ session_info:List of 9 [23:15:46.110] | : . ' .. .. .. .. ..$ process :List of 1 [23:15:46.110] | : . ' .. .. .. .. .. ..$ pid: int 25240 [23:15:46.110] | : . ' .. .. .. .. ..$ r :List of 16 [23:15:46.110] | : . ' .. .. .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [23:15:46.110] | : . ' .. .. .. .. .. ..$ arch : chr "x86_64" [23:15:46.110] | : . ' .. .. .. .. .. ..$ os : chr "mingw32" [23:15:46.110] | : . ' .. .. .. .. .. ..$ crt : chr "ucrt" [23:15:46.110] | : . ' .. .. .. .. .. ..$ system : chr "x86_64, mingw32" [23:15:46.110] | : . ' .. .. .. .. .. ..$ status : chr "Under development (unstable)" [23:15:46.110] | : . ' .. .. .. .. .. ..$ major : chr "4" [23:15:46.110] | : . ' .. .. .. .. .. ..$ minor : chr "6.0" [23:15:46.110] | : . ' .. .. .. .. .. ..$ year : chr "2025" [23:15:46.110] | : . ' .. .. .. .. .. ..$ month : chr "11" [23:15:46.110] | : . ' .. .. .. .. .. ..$ day : chr "15" [23:15:46.110] | : . ' .. .. .. .. .. ..$ svn rev : chr "89024" [23:15:46.110] | : . ' .. .. .. .. .. ..$ language : chr "R" [23:15:46.110] | : . ' .. .. .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-11-15 r89024 ucrt)" [23:15:46.110] | : . ' .. .. .. .. .. ..$ nickname : chr "Unsuffered Consequences" [23:15:46.110] | : . ' .. .. .. .. .. ..$ os.type : chr "windows" [23:15:46.110] | : . ' .. .. .. .. ..$ system :List of 9 [23:15:46.110] | : . ' .. .. .. .. .. ..$ sysname : chr "Windows" [23:15:46.110] | : . ' .. .. .. .. .. ..$ release : chr "Server x64" [23:15:46.110] | : . ' .. .. .. .. .. ..$ version : chr "build 20348" [23:15:46.110] | : . ' .. .. .. .. .. ..$ nodename : chr "CRANWIN3" [23:15:46.110] | : . ' .. .. .. .. .. ..$ machine : chr "x86-64" [23:15:46.110] | : . ' .. .. .. .. .. ..$ login : chr "CRAN" [23:15:46.110] | : . ' .. .. .. .. .. ..$ user : chr "CRAN" [23:15:46.110] | : . ' .. .. .. .. .. ..$ effective_user: chr "CRAN" [23:15:46.110] | : . ' .. .. .. .. .. ..$ udomain : chr "CRANWIN3" [23:15:46.110] | : . ' .. .. .. .. ..$ l10n :List of 5 [23:15:46.110] | : . ' .. .. .. .. .. ..$ MBCS : logi TRUE [23:15:46.110] | : . ' .. .. .. .. .. ..$ UTF-8 : logi TRUE [23:15:46.110] | : . ' .. .. .. .. .. ..$ Latin-1 : logi FALSE [23:15:46.110] | : . ' .. .. .. .. .. ..$ codepage : int 65001 [23:15:46.110] | : . ' .. .. .. .. .. ..$ system.codepage: int 65001 [23:15:46.110] | : . ' .. .. .. .. ..$ extSoftVersion: Named chr [1:11] "1.3.1" "1.0.8, 13-Jul-2019" "5.8.1" "1.24" ... [23:15:46.110] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:11] "zlib" "bzlib" "xz" "libdeflate" ... [23:15:46.110] | : . ' .. .. .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [23:15:46.110] | : . ' .. .. .. .. ..$ tempdir : chr "D:\\temp\\2025_11_16_23_10_16_9296\\RtmpmiDN8r" [23:15:46.110] | : . ' .. .. .. .. ..$ libs : chr [1:2] "D:/temp/2025_11_16_23_10_16_9296/RtmpOmYtQ8/RLIBS_10f20545821a2" "D:/RCompile/recent/R/library" [23:15:46.110] | : . ' .. .. .. .. ..$ pkgs : NULL [23:15:46.110] | : . ' .. .. .. ..- attr(*, "options")=List of 35 [23:15:46.110] | : . ' .. .. .. .. ..$ worker : chr "localhost" [23:15:46.110] | : . ' .. .. .. .. .. ..- attr(*, "localhost")= logi TRUE [23:15:46.110] | : . ' .. .. .. .. ..$ master : chr "localhost" [23:15:46.110] | : . ' .. .. .. .. ..$ port : int 23755 [23:15:46.110] | : . ' .. .. .. .. ..$ connectTimeout : num 120 [23:15:46.110] | : . ' .. .. .. .. ..$ timeout : num 120 [23:15:46.110] | : . ' .. .. .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [23:15:46.110] | : . ' .. .. .. .. ..$ homogeneous : logi TRUE [23:15:46.110] | : . ' .. .. .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:48988:CRANWIN3:CRAN"| __truncated__ [23:15:46.110] | : . ' .. .. .. .. ..$ rscript_envs : NULL [23:15:46.110] | : . ' .. .. .. .. ..$ rscript_libs : NULL [23:15:46.110] | : . ' .. .. .. .. ..$ rscript_startup : NULL [23:15:46.110] | : . ' .. .. .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [23:15:46.110] | : . ' .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [23:15:46.110] | : . ' .. .. .. .. ..$ methods : logi TRUE [23:15:46.110] | : . ' .. .. .. .. ..$ socketOptions : chr "no-delay" [23:15:46.110] | : . ' .. .. .. .. ..$ useXDR : logi FALSE [23:15:46.110] | : . ' .. .. .. .. ..$ outfile : chr "/dev/null" [23:15:46.110] | : . ' .. .. .. .. ..$ renice : int NA [23:15:46.110] | : . ' .. .. .. .. ..$ rshcmd : NULL [23:15:46.110] | : . ' .. .. .. .. ..$ user : chr(0) [23:15:46.110] | : . ' .. .. .. .. ..$ revtunnel : logi FALSE [23:15:46.110] | : . ' .. .. .. .. ..$ rshlogfile : NULL [23:15:46.110] | : . ' .. .. .. .. ..$ rshopts : chr(0) [23:15:46.110] | : . ' .. .. .. .. ..$ rank : int 0 [23:15:46.110] | : . ' .. .. .. .. ..$ manual : logi FALSE [23:15:46.110] | : . ' .. .. .. .. ..$ dryrun : logi FALSE [23:15:46.110] | : . ' .. .. .. .. ..$ quiet : logi FALSE [23:15:46.110] | : . ' .. .. .. .. ..$ setup_strategy : chr "parallel" [23:15:46.110] | : . ' .. .. .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [23:15:46.110] | : . ' .. .. .. .. ..$ rshcmd_label : NULL [23:15:46.110] | : . ' .. .. .. .. ..$ rsh_call : NULL [23:15:46.110] | : . ' .. .. .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [23:15:46.110] | : . ' .. .. .. .. ..$ localMachine : logi TRUE [23:15:46.110] | : . ' .. .. .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [23:15:46.110] | : . ' master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [23:15:46.110] | : . ' 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [23:15:46.110] | : . ' 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [23:15:46.110] | : . ' rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [23:15:46.110] | : . ' "cmd", "sh", "none"), default_packages = c("datasets", "utils", [23:15:46.110] | : . ' "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [23:15:46.110] | : . ' socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [23:15:46.110] | : . ' "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [23:15:46.110] | : . ' FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [23:15:46.110] | : . ' NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [23:15:46.110] | : . ' NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [23:15:46.110] | : . ' setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [23:15:46.110] | : . ' "parallel"), calls = getOption2("parallelly.makeNodePSOCK.calls", [23:15:46.110] | : . ' FALSE), action = c("launch", "options"), verbose = FALSE) [23:15:46.110] | : . ' .. .. .. .. ..$ arguments :List of 29 [23:15:46.110] | : . ' .. .. .. .. .. ..$ worker : chr "localhost" [23:15:46.110] | : . ' .. .. .. .. .. ..$ master : NULL [23:15:46.110] | : . ' .. .. .. .. .. ..$ port : int 23755 [23:15:46.110] | : . ' .. .. .. .. .. ..$ connectTimeout : num 120 [23:15:46.110] | : . ' .. .. .. .. .. ..$ timeout : num 120 [23:15:46.110] | : . ' .. .. .. .. .. ..$ rscript : NULL [23:15:46.110] | : . ' .. .. .. .. .. ..$ homogeneous : NULL [23:15:46.110] | : . ' .. .. .. .. .. ..$ rscript_args : NULL [23:15:46.110] | : . ' .. .. .. .. .. ..$ rscript_envs : NULL [23:15:46.110] | : . ' .. .. .. .. .. ..$ rscript_libs : NULL [23:15:46.110] | : . ' .. .. .. .. .. ..$ rscript_startup : NULL [23:15:46.110] | : . ' .. .. .. .. .. ..$ rscript_sh : chr "auto" [23:15:46.110] | : . ' .. .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [23:15:46.110] | : . ' .. .. .. .. .. ..$ methods : logi TRUE [23:15:46.110] | : . ' .. .. .. .. .. ..$ socketOptions : chr "no-delay" [23:15:46.110] | : . ' .. .. .. .. .. ..$ useXDR : logi FALSE [23:15:46.110] | : . ' .. .. .. .. .. ..$ outfile : chr "/dev/null" [23:15:46.110] | : . ' .. .. .. .. .. ..$ renice : int NA [23:15:46.110] | : . ' .. .. .. .. .. ..$ rshcmd : NULL [23:15:46.110] | : . ' .. .. .. .. .. ..$ user : NULL [23:15:46.110] | : . ' .. .. .. .. .. ..$ revtunnel : logi NA [23:15:46.110] | : . ' .. .. .. .. .. ..$ rshlogfile : NULL [23:15:46.110] | : . ' .. .. .. .. .. ..$ rshopts : NULL [23:15:46.110] | : . ' .. .. .. .. .. ..$ rank : int 1 [23:15:46.110] | : . ' .. .. .. .. .. ..$ manual : logi FALSE [23:15:46.110] | : . ' .. .. .. .. .. ..$ dryrun : logi FALSE [23:15:46.110] | : . ' .. .. .. .. .. ..$ quiet : logi FALSE [23:15:46.110] | : . ' .. .. .. .. .. ..$ setup_strategy : chr "parallel" [23:15:46.110] | : . ' .. .. .. .. .. ..$ calls : logi FALSE [23:15:46.110] | : . ' .. .. .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [23:15:46.110] | : . ' .. .. .. ..- attr(*, "calls")=Dotted pair list of 16 [23:15:46.110] | : . ' .. .. .. .. ..$ : language future:::testme("tweak") [23:15:46.110] | : . ' .. .. .. .. ..$ : language source(file.path(path, "run.R")) [23:15:46.110] | : . ' .. .. .. .. ..$ : language withVisible(eval(ei, envir)) [23:15:46.110] | : . ' .. .. .. .. ..$ : language eval(ei, envir) [23:15:46.110] | : . ' .. .. .. .. ..$ : language eval(ei, envir) [23:15:46.110] | : . ' .. .. .. .. ..$ : language source(testme[["script"]], echo = TRUE) [23:15:46.110] | : . ' .. .. .. .. ..$ : language withVisible(eval(ei, envir)) [23:15:46.110] | : . ' .. .. .. .. ..$ : language eval(ei, envir) [23:15:46.110] | : . ' .. .. .. .. ..$ : language eval(ei, envir) [23:15:46.110] | : . ' .. .. .. .. ..$ : language local({ cl <- makeClusterPSOCK(1L) ... [23:15:46.110] | : . ' .. .. .. .. ..$ : language eval.parent(substitute(eval(quote(expr), envir))) [23:15:46.110] | : . ' .. .. .. .. ..$ : language eval(expr, p) [23:15:46.110] | : . ' .. .. .. .. ..$ : language eval(expr, p) [23:15:46.110] | : . ' .. .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [23:15:46.110] | : . ' .. .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [23:15:46.110] | : . ' .. .. .. .. ..$ : language makeClusterPSOCK(1L) [23:15:46.110] | : . ' .. .. .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [23:15:46.110] | : . ' .. .. ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [23:15:46.110] | : . ' ..- attr(*, "call")= language future::plan(future::cluster, workers = cl) [23:15:46.110] | : . ' $ current:function (..., envir = parent.frame()) [23:15:46.110] | : . ' ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:15:46.110] | : . ' ..- attr(*, "init")= logi TRUE [23:15:46.110] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:46.110] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.110] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.110] | : . ' ..- attr(*, "call")= language plan(sequential) [23:15:46.176] | : . ' Formals differ [23:15:46.177] | : . all.equal() for future ... done [23:15:46.177] | : . Future strategies differ at level 1 [23:15:46.177] | : all.equal() for FutureStrategyList ... done [23:15:46.178] | : plan(): Setting new future backend stack: [23:15:46.178] | : List of future strategies: [23:15:46.178] | : 1. cluster: [23:15:46.178] | : - args: function (..., workers = "") [23:15:46.178] | : - tweaked: TRUE [23:15:46.178] | : - call: future::plan(future::cluster, workers = cl) [23:15:46.182] | : List of 1 [23:15:46.182] | : $ :function (..., workers = list(list(con = 4L, host = "localhost", rank = 0L, [23:15:46.182] | : session_info = list(process = list(pid = 25240L), r = list(platform = "x86_64-w64-mingw32", [23:15:46.182] | : arch = "x86_64", os = "mingw32", crt = "ucrt", system = "x86_64, mingw32", [23:15:46.182] | : status = "Under development (unstable)", major = "4", minor = "6.0", [23:15:46.182] | : year = "2025", month = "11", day = "15", `svn rev` = "89024", language = "R", [23:15:46.182] | : version.string = "R Under development (unstable) (2025-11-15 r89024 ucrt)", [23:15:46.182] | : nickname = "Unsuffered Consequences", os.type = "windows"), system = list( [23:15:46.182] | : sysname = "Windows", release = "Server x64", version = "build 20348", [23:15:46.182] | : nodename = "CRANWIN3", machine = "x86-64", login = "CRAN", user = "CRAN", [23:15:46.182] | : effective_user = "CRAN", udomain = "CRANWIN3"), l10n = list(MBCS = TRUE, [23:15:46.182] | : `UTF-8` = TRUE, `Latin-1` = FALSE, codepage = 65001L, system.codepage = 65001L), [23:15:46.182] | : extSoftVersion = c(zlib = "1.3.1", bzlib = "1.0.8, 13-Jul-2019", [23:15:46.182] | : xz = "5.8.1", libdeflate = "1.24", zstd = "1.5.7", PCRE = "10.46 2025-08-27", [23:15:46.182] | : ICU = "77.1", TRE = "TRE 0.8.0 R_fixes (BSD)", iconv = "win_iconv", [23:15:46.182] | : readline = "", BLAS = ""), pwd = "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests", [23:15:46.182] | : tempdir = "D:\\temp\\2025_11_16_23_10_16_9296\\RtmpmiDN8r", libs = c("D:/temp/2025_11_16_23_10_16_9296/RtmpOmYtQ8/RLIBS_10f20545821a2", [23:15:46.182] | : ..- attr(*, "class")= chr [1:5] "tweaked" "cluster" "multiprocess" "future" ... [23:15:46.182] | : ..- attr(*, "init")= logi TRUE [23:15:46.182] | : ..- attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [23:15:46.182] | : earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [23:15:46.182] | : .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [23:15:46.182] | : ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [23:15:46.182] | : ..- attr(*, "tweaks")=List of 1 [23:15:46.182] | : .. ..$ workers:List of 1 [23:15:46.182] | : .. .. ..$ :List of 4 [23:15:46.182] | : .. .. .. ..$ con : 'sockconn' int 4 [23:15:46.182] | : .. .. .. .. ..- attr(*, "conn_id")= [23:15:46.182] | : .. .. .. ..$ host : chr "localhost" [23:15:46.182] | : .. .. .. .. ..- attr(*, "localhost")= logi TRUE [23:15:46.182] | : .. .. .. ..$ rank : int 0 [23:15:46.182] | : .. .. .. ..$ session_info:List of 9 [23:15:46.182] | : .. .. .. .. ..$ process :List of 1 [23:15:46.182] | : .. .. .. .. .. ..$ pid: int 25240 [23:15:46.182] | : .. .. .. .. ..$ r :List of 16 [23:15:46.182] | : .. .. .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [23:15:46.182] | : .. .. .. .. .. ..$ arch : chr "x86_64" [23:15:46.182] | : .. .. .. .. .. ..$ os : chr "mingw32" [23:15:46.182] | : .. .. .. .. .. ..$ crt : chr "ucrt" [23:15:46.182] | : .. .. .. .. .. ..$ system : chr "x86_64, mingw32" [23:15:46.182] | : .. .. .. .. .. ..$ status : chr "Under development (unstable)" [23:15:46.182] | : .. .. .. .. .. ..$ major : chr "4" [23:15:46.182] | : .. .. .. .. .. ..$ minor : chr "6.0" [23:15:46.182] | : .. .. .. .. .. ..$ year : chr "2025" [23:15:46.182] | : .. .. .. .. .. ..$ month : chr "11" [23:15:46.182] | : .. .. .. .. .. ..$ day : chr "15" [23:15:46.182] | : .. .. .. .. .. ..$ svn rev : chr "89024" [23:15:46.182] | : .. .. .. .. .. ..$ language : chr "R" [23:15:46.182] | : .. .. .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-11-15 r89024 ucrt)" [23:15:46.182] | : .. .. .. .. .. ..$ nickname : chr "Unsuffered Consequences" [23:15:46.182] | : .. .. .. .. .. ..$ os.type : chr "windows" [23:15:46.182] | : .. .. .. .. ..$ system :List of 9 [23:15:46.182] | : .. .. .. .. .. ..$ sysname : chr "Windows" [23:15:46.182] | : .. .. .. .. .. ..$ release : chr "Server x64" [23:15:46.182] | : .. .. .. .. .. ..$ version : chr "build 20348" [23:15:46.182] | : .. .. .. .. .. ..$ nodename : chr "CRANWIN3" [23:15:46.182] | : .. .. .. .. .. ..$ machine : chr "x86-64" [23:15:46.182] | : .. .. .. .. .. ..$ login : chr "CRAN" [23:15:46.182] | : .. .. .. .. .. ..$ user : chr "CRAN" [23:15:46.182] | : .. .. .. .. .. ..$ effective_user: chr "CRAN" [23:15:46.182] | : .. .. .. .. .. ..$ udomain : chr "CRANWIN3" [23:15:46.182] | : .. .. .. .. ..$ l10n :List of 5 [23:15:46.182] | : .. .. .. .. .. ..$ MBCS : logi TRUE [23:15:46.182] | : .. .. .. .. .. ..$ UTF-8 : logi TRUE [23:15:46.182] | : .. .. .. .. .. ..$ Latin-1 : logi FALSE [23:15:46.182] | : .. .. .. .. .. ..$ codepage : int 65001 [23:15:46.182] | : .. .. .. .. .. ..$ system.codepage: int 65001 [23:15:46.182] | : .. .. .. .. ..$ extSoftVersion: Named chr [1:11] "1.3.1" "1.0.8, 13-Jul-2019" "5.8.1" "1.24" ... [23:15:46.182] | : .. .. .. .. .. ..- attr(*, "names")= chr [1:11] "zlib" "bzlib" "xz" "libdeflate" ... [23:15:46.182] | : .. .. .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [23:15:46.182] | : .. .. .. .. ..$ tempdir : chr "D:\\temp\\2025_11_16_23_10_16_9296\\RtmpmiDN8r" [23:15:46.182] | : .. .. .. .. ..$ libs : chr [1:2] "D:/temp/2025_11_16_23_10_16_9296/RtmpOmYtQ8/RLIBS_10f20545821a2" "D:/RCompile/recent/R/library" [23:15:46.182] | : .. .. .. .. ..$ pkgs : NULL [23:15:46.182] | : .. .. .. ..- attr(*, "options")=List of 35 [23:15:46.182] | : .. .. .. .. ..$ worker : chr "localhost" [23:15:46.182] | : .. .. .. .. .. ..- attr(*, "localhost")= logi TRUE [23:15:46.182] | : .. .. .. .. ..$ master : chr "localhost" [23:15:46.182] | : .. .. .. .. ..$ port : int 23755 [23:15:46.182] | : .. .. .. .. ..$ connectTimeout : num 120 [23:15:46.182] | : .. .. .. .. ..$ timeout : num 120 [23:15:46.182] | : .. .. .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [23:15:46.182] | : .. .. .. .. ..$ homogeneous : logi TRUE [23:15:46.182] | : .. .. .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:48988:CRANWIN3:CRAN"| __truncated__ [23:15:46.182] | : .. .. .. .. ..$ rscript_envs : NULL [23:15:46.182] | : .. .. .. .. ..$ rscript_libs : NULL [23:15:46.182] | : .. .. .. .. ..$ rscript_startup : NULL [23:15:46.182] | : .. .. .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [23:15:46.182] | : .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [23:15:46.182] | : .. .. .. .. ..$ methods : logi TRUE [23:15:46.182] | : .. .. .. .. ..$ socketOptions : chr "no-delay" [23:15:46.182] | : .. .. .. .. ..$ useXDR : logi FALSE [23:15:46.182] | : .. .. .. .. ..$ outfile : chr "/dev/null" [23:15:46.182] | : .. .. .. .. ..$ renice : int NA [23:15:46.182] | : .. .. .. .. ..$ rshcmd : NULL [23:15:46.182] | : .. .. .. .. ..$ user : chr(0) [23:15:46.182] | : .. .. .. .. ..$ revtunnel : logi FALSE [23:15:46.182] | : .. .. .. .. ..$ rshlogfile : NULL [23:15:46.182] | : .. .. .. .. ..$ rshopts : chr(0) [23:15:46.182] | : .. .. .. .. ..$ rank : int 0 [23:15:46.182] | : .. .. .. .. ..$ manual : logi FALSE [23:15:46.182] | : .. .. .. .. ..$ dryrun : logi FALSE [23:15:46.182] | : .. .. .. .. ..$ quiet : logi FALSE [23:15:46.182] | : .. .. .. .. ..$ setup_strategy : chr "parallel" [23:15:46.182] | : .. .. .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [23:15:46.182] | : .. .. .. .. ..$ rshcmd_label : NULL [23:15:46.182] | : .. .. .. .. ..$ rsh_call : NULL [23:15:46.182] | : .. .. .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [23:15:46.182] | : .. .. .. .. ..$ localMachine : logi TRUE [23:15:46.182] | : .. .. .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [23:15:46.182] | : master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [23:15:46.182] | : 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [23:15:46.182] | : 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [23:15:46.182] | : rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [23:15:46.182] | : "cmd", "sh", "none"), default_packages = c("datasets", "utils", [23:15:46.182] | : "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [23:15:46.182] | : socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [23:15:46.182] | : "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [23:15:46.182] | : FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [23:15:46.182] | : NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [23:15:46.182] | : NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [23:15:46.182] | : setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [23:15:46.182] | : "parallel"), calls = getOption2("parallelly.makeNodePSOCK.calls", [23:15:46.182] | : FALSE), action = c("launch", "options"), verbose = FALSE) [23:15:46.182] | : .. .. .. .. ..$ arguments :List of 29 [23:15:46.182] | : .. .. .. .. .. ..$ worker : chr "localhost" [23:15:46.182] | : .. .. .. .. .. ..$ master : NULL [23:15:46.182] | : .. .. .. .. .. ..$ port : int 23755 [23:15:46.182] | : .. .. .. .. .. ..$ connectTimeout : num 120 [23:15:46.182] | : .. .. .. .. .. ..$ timeout : num 120 [23:15:46.182] | : .. .. .. .. .. ..$ rscript : NULL [23:15:46.182] | : .. .. .. .. .. ..$ homogeneous : NULL [23:15:46.182] | : .. .. .. .. .. ..$ rscript_args : NULL [23:15:46.182] | : .. .. .. .. .. ..$ rscript_envs : NULL [23:15:46.182] | : .. .. .. .. .. ..$ rscript_libs : NULL [23:15:46.182] | : .. .. .. .. .. ..$ rscript_startup : NULL [23:15:46.182] | : .. .. .. .. .. ..$ rscript_sh : chr "auto" [23:15:46.182] | : .. .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [23:15:46.182] | : .. .. .. .. .. ..$ methods : logi TRUE [23:15:46.182] | : .. .. .. .. .. ..$ socketOptions : chr "no-delay" [23:15:46.182] | : .. .. .. .. .. ..$ useXDR : logi FALSE [23:15:46.182] | : .. .. .. .. .. ..$ outfile : chr "/dev/null" [23:15:46.182] | : .. .. .. .. .. ..$ renice : int NA [23:15:46.182] | : .. .. .. .. .. ..$ rshcmd : NULL [23:15:46.182] | : .. .. .. .. .. ..$ user : NULL [23:15:46.182] | : .. .. .. .. .. ..$ revtunnel : logi NA [23:15:46.182] | : .. .. .. .. .. ..$ rshlogfile : NULL [23:15:46.182] | : .. .. .. .. .. ..$ rshopts : NULL [23:15:46.182] | : .. .. .. .. .. ..$ rank : int 1 [23:15:46.182] | : .. .. .. .. .. ..$ manual : logi FALSE [23:15:46.182] | : .. .. .. .. .. ..$ dryrun : logi FALSE [23:15:46.182] | : .. .. .. .. .. ..$ quiet : logi FALSE [23:15:46.182] | : .. .. .. .. .. ..$ setup_strategy : chr "parallel" [23:15:46.182] | : .. .. .. .. .. ..$ calls : logi FALSE [23:15:46.182] | : .. .. .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [23:15:46.182] | : .. .. .. ..- attr(*, "calls")=Dotted pair list of 16 [23:15:46.182] | : .. .. .. .. ..$ : language future:::testme("tweak") [23:15:46.182] | : .. .. .. .. ..$ : language source(file.path(path, "run.R")) [23:15:46.182] | : .. .. .. .. ..$ : language withVisible(eval(ei, envir)) [23:15:46.182] | : .. .. .. .. ..$ : language eval(ei, envir) [23:15:46.182] | : .. .. .. .. ..$ : language eval(ei, envir) [23:15:46.182] | : .. .. .. .. ..$ : language source(testme[["script"]], echo = TRUE) [23:15:46.182] | : .. .. .. .. ..$ : language withVisible(eval(ei, envir)) [23:15:46.182] | : .. .. .. .. ..$ : language eval(ei, envir) [23:15:46.182] | : .. .. .. .. ..$ : language eval(ei, envir) [23:15:46.182] | : .. .. .. .. ..$ : language local({ cl <- makeClusterPSOCK(1L) ... [23:15:46.182] | : .. .. .. .. ..$ : language eval.parent(substitute(eval(quote(expr), envir))) [23:15:46.182] | : .. .. .. .. ..$ : language eval(expr, p) [23:15:46.182] | : .. .. .. .. ..$ : language eval(expr, p) [23:15:46.182] | : .. .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [23:15:46.182] | : .. .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [23:15:46.182] | : .. .. .. .. ..$ : language makeClusterPSOCK(1L) [23:15:46.182] | : .. .. .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [23:15:46.182] | : .. .. ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [23:15:46.182] | : ..- attr(*, "call")= language future::plan(future::cluster, workers = cl) [23:15:46.182] | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:46.262] | : plan(): plan_cleanup(<'sequential', 'uniprocess', 'future', 'function'>, cleanup = NA) ... [23:15:46.263] | : . plan("next", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:15:46.263] | : . ' Getting current ("next") strategy: 'FutureStrategy', 'sequential', 'uniprocess', 'future', 'function' [23:15:46.263] | : . plan("next", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:15:46.263] | : . Legacy shutdown of cluster workers ... [23:15:46.264] | : . ' Stopping existing cluster ... [23:15:46.264] | : . ' , No pre-existing cluster. Skipping [23:15:46.265] | : . ' Stopping existing cluster ... done [23:15:46.265] | : . Legacy shutdown of cluster workers ... done [23:15:46.265] | : plan(): plan_cleanup(<'sequential', 'uniprocess', 'future', 'function'>, cleanup = NA) ... done [23:15:46.265] | : plan(): plan_init() of 'tweaked', 'cluster', 'multiprocess', 'future', 'function' ... [23:15:46.266] | : . function (..., workers = list(list(con = 4L, host = "localhost", rank = 0L, [23:15:46.266] | : . session_info = list(process = list(pid = 25240L), r = list(platform = "x86_64-w64-mingw32", [23:15:46.266] | : . arch = "x86_64", os = "mingw32", crt = "ucrt", system = "x86_64, mingw32", [23:15:46.266] | : . status = "Under development (unstable)", major = "4", minor = "6.0", [23:15:46.266] | : . year = "2025", month = "11", day = "15", `svn rev` = "89024", language = "R", [23:15:46.266] | : . version.string = "R Under development (unstable) (2025-11-15 r89024 ucrt)", [23:15:46.266] | : . nickname = "Unsuffered Consequences", os.type = "windows"), system = list( [23:15:46.266] | : . sysname = "Windows", release = "Server x64", version = "build 20348", [23:15:46.266] | : . nodename = "CRANWIN3", machine = "x86-64", login = "CRAN", user = "CRAN", [23:15:46.266] | : . effective_user = "CRAN", udomain = "CRANWIN3"), l10n = list(MBCS = TRUE, [23:15:46.266] | : . `UTF-8` = TRUE, `Latin-1` = FALSE, codepage = 65001L, system.codepage = 65001L), [23:15:46.266] | : . extSoftVersion = c(zlib = "1.3.1", bzlib = "1.0.8, 13-Jul-2019", [23:15:46.266] | : . xz = "5.8.1", libdeflate = "1.24", zstd = "1.5.7", PCRE = "10.46 2025-08-27", [23:15:46.266] | : . ICU = "77.1", TRE = "TRE 0.8.0 R_fixes (BSD)", iconv = "win_iconv", [23:15:46.266] | : . readline = "", BLAS = ""), pwd = "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests", [23:15:46.266] | : . tempdir = "D:\\temp\\2025_11_16_23_10_16_9296\\RtmpmiDN8r", libs = c("D:/temp/2025_11_16_23_10_16_9296/RtmpOmYtQ8/RLIBS_10f20545821a2", [23:15:46.266] | : . - attr(*, "class")= chr [1:5] "tweaked" "cluster" "multiprocess" "future" ... [23:15:46.266] | : . - attr(*, "init")= logi TRUE [23:15:46.266] | : . - attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [23:15:46.266] | : . earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [23:15:46.266] | : . ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [23:15:46.266] | : . - attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [23:15:46.266] | : . - attr(*, "tweaks")=List of 1 [23:15:46.266] | : . ..$ workers:List of 1 [23:15:46.266] | : . .. ..$ :List of 4 [23:15:46.266] | : . .. .. ..$ con : 'sockconn' int 4 [23:15:46.266] | : . .. .. .. ..- attr(*, "conn_id")= [23:15:46.266] | : . .. .. ..$ host : chr "localhost" [23:15:46.266] | : . .. .. .. ..- attr(*, "localhost")= logi TRUE [23:15:46.266] | : . .. .. ..$ rank : int 0 [23:15:46.266] | : . .. .. ..$ session_info:List of 9 [23:15:46.266] | : . .. .. .. ..$ process :List of 1 [23:15:46.266] | : . .. .. .. .. ..$ pid: int 25240 [23:15:46.266] | : . .. .. .. ..$ r :List of 16 [23:15:46.266] | : . .. .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [23:15:46.266] | : . .. .. .. .. ..$ arch : chr "x86_64" [23:15:46.266] | : . .. .. .. .. ..$ os : chr "mingw32" [23:15:46.266] | : . .. .. .. .. ..$ crt : chr "ucrt" [23:15:46.266] | : . .. .. .. .. ..$ system : chr "x86_64, mingw32" [23:15:46.266] | : . .. .. .. .. ..$ status : chr "Under development (unstable)" [23:15:46.266] | : . .. .. .. .. ..$ major : chr "4" [23:15:46.266] | : . .. .. .. .. ..$ minor : chr "6.0" [23:15:46.266] | : . .. .. .. .. ..$ year : chr "2025" [23:15:46.266] | : . .. .. .. .. ..$ month : chr "11" [23:15:46.266] | : . .. .. .. .. ..$ day : chr "15" [23:15:46.266] | : . .. .. .. .. ..$ svn rev : chr "89024" [23:15:46.266] | : . .. .. .. .. ..$ language : chr "R" [23:15:46.266] | : . .. .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-11-15 r89024 ucrt)" [23:15:46.266] | : . .. .. .. .. ..$ nickname : chr "Unsuffered Consequences" [23:15:46.266] | : . .. .. .. .. ..$ os.type : chr "windows" [23:15:46.266] | : . .. .. .. ..$ system :List of 9 [23:15:46.266] | : . .. .. .. .. ..$ sysname : chr "Windows" [23:15:46.266] | : . .. .. .. .. ..$ release : chr "Server x64" [23:15:46.266] | : . .. .. .. .. ..$ version : chr "build 20348" [23:15:46.266] | : . .. .. .. .. ..$ nodename : chr "CRANWIN3" [23:15:46.266] | : . .. .. .. .. ..$ machine : chr "x86-64" [23:15:46.266] | : . .. .. .. .. ..$ login : chr "CRAN" [23:15:46.266] | : . .. .. .. .. ..$ user : chr "CRAN" [23:15:46.266] | : . .. .. .. .. ..$ effective_user: chr "CRAN" [23:15:46.266] | : . .. .. .. .. ..$ udomain : chr "CRANWIN3" [23:15:46.266] | : . .. .. .. ..$ l10n :List of 5 [23:15:46.266] | : . .. .. .. .. ..$ MBCS : logi TRUE [23:15:46.266] | : . .. .. .. .. ..$ UTF-8 : logi TRUE [23:15:46.266] | : . .. .. .. .. ..$ Latin-1 : logi FALSE [23:15:46.266] | : . .. .. .. .. ..$ codepage : int 65001 [23:15:46.266] | : . .. .. .. .. ..$ system.codepage: int 65001 [23:15:46.266] | : . .. .. .. ..$ extSoftVersion: Named chr [1:11] "1.3.1" "1.0.8, 13-Jul-2019" "5.8.1" "1.24" ... [23:15:46.266] | : . .. .. .. .. ..- attr(*, "names")= chr [1:11] "zlib" "bzlib" "xz" "libdeflate" ... [23:15:46.266] | : . .. .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [23:15:46.266] | : . .. .. .. ..$ tempdir : chr "D:\\temp\\2025_11_16_23_10_16_9296\\RtmpmiDN8r" [23:15:46.266] | : . .. .. .. ..$ libs : chr [1:2] "D:/temp/2025_11_16_23_10_16_9296/RtmpOmYtQ8/RLIBS_10f20545821a2" "D:/RCompile/recent/R/library" [23:15:46.266] | : . .. .. .. ..$ pkgs : NULL [23:15:46.266] | : . .. .. ..- attr(*, "options")=List of 35 [23:15:46.266] | : . .. .. .. ..$ worker : chr "localhost" [23:15:46.266] | : . .. .. .. .. ..- attr(*, "localhost")= logi TRUE [23:15:46.266] | : . .. .. .. ..$ master : chr "localhost" [23:15:46.266] | : . .. .. .. ..$ port : int 23755 [23:15:46.266] | : . .. .. .. ..$ connectTimeout : num 120 [23:15:46.266] | : . .. .. .. ..$ timeout : num 120 [23:15:46.266] | : . .. .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [23:15:46.266] | : . .. .. .. ..$ homogeneous : logi TRUE [23:15:46.266] | : . .. .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:48988:CRANWIN3:CRAN"| __truncated__ [23:15:46.266] | : . .. .. .. ..$ rscript_envs : NULL [23:15:46.266] | : . .. .. .. ..$ rscript_libs : NULL [23:15:46.266] | : . .. .. .. ..$ rscript_startup : NULL [23:15:46.266] | : . .. .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [23:15:46.266] | : . .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [23:15:46.266] | : . .. .. .. ..$ methods : logi TRUE [23:15:46.266] | : . .. .. .. ..$ socketOptions : chr "no-delay" [23:15:46.266] | : . .. .. .. ..$ useXDR : logi FALSE [23:15:46.266] | : . .. .. .. ..$ outfile : chr "/dev/null" [23:15:46.266] | : . .. .. .. ..$ renice : int NA [23:15:46.266] | : . .. .. .. ..$ rshcmd : NULL [23:15:46.266] | : . .. .. .. ..$ user : chr(0) [23:15:46.266] | : . .. .. .. ..$ revtunnel : logi FALSE [23:15:46.266] | : . .. .. .. ..$ rshlogfile : NULL [23:15:46.266] | : . .. .. .. ..$ rshopts : chr(0) [23:15:46.266] | : . .. .. .. ..$ rank : int 0 [23:15:46.266] | : . .. .. .. ..$ manual : logi FALSE [23:15:46.266] | : . .. .. .. ..$ dryrun : logi FALSE [23:15:46.266] | : . .. .. .. ..$ quiet : logi FALSE [23:15:46.266] | : . .. .. .. ..$ setup_strategy : chr "parallel" [23:15:46.266] | : . .. .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [23:15:46.266] | : . .. .. .. ..$ rshcmd_label : NULL [23:15:46.266] | : . .. .. .. ..$ rsh_call : NULL [23:15:46.266] | : . .. .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [23:15:46.266] | : . .. .. .. ..$ localMachine : logi TRUE [23:15:46.266] | : . .. .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [23:15:46.266] | : . master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [23:15:46.266] | : . 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [23:15:46.266] | : . 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [23:15:46.266] | : . rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [23:15:46.266] | : . "cmd", "sh", "none"), default_packages = c("datasets", "utils", [23:15:46.266] | : . "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [23:15:46.266] | : . socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [23:15:46.266] | : . "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [23:15:46.266] | : . FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [23:15:46.266] | : . NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [23:15:46.266] | : . NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [23:15:46.266] | : . setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [23:15:46.266] | : . "parallel"), calls = getOption2("parallelly.makeNodePSOCK.calls", [23:15:46.266] | : . FALSE), action = c("launch", "options"), verbose = FALSE) [23:15:46.266] | : . .. .. .. ..$ arguments :List of 29 [23:15:46.266] | : . .. .. .. .. ..$ worker : chr "localhost" [23:15:46.266] | : . .. .. .. .. ..$ master : NULL [23:15:46.266] | : . .. .. .. .. ..$ port : int 23755 [23:15:46.266] | : . .. .. .. .. ..$ connectTimeout : num 120 [23:15:46.266] | : . .. .. .. .. ..$ timeout : num 120 [23:15:46.266] | : . .. .. .. .. ..$ rscript : NULL [23:15:46.266] | : . .. .. .. .. ..$ homogeneous : NULL [23:15:46.266] | : . .. .. .. .. ..$ rscript_args : NULL [23:15:46.266] | : . .. .. .. .. ..$ rscript_envs : NULL [23:15:46.266] | : . .. .. .. .. ..$ rscript_libs : NULL [23:15:46.266] | : . .. .. .. .. ..$ rscript_startup : NULL [23:15:46.266] | : . .. .. .. .. ..$ rscript_sh : chr "auto" [23:15:46.266] | : . .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [23:15:46.266] | : . .. .. .. .. ..$ methods : logi TRUE [23:15:46.266] | : . .. .. .. .. ..$ socketOptions : chr "no-delay" [23:15:46.266] | : . .. .. .. .. ..$ useXDR : logi FALSE [23:15:46.266] | : . .. .. .. .. ..$ outfile : chr "/dev/null" [23:15:46.266] | : . .. .. .. .. ..$ renice : int NA [23:15:46.266] | : . .. .. .. .. ..$ rshcmd : NULL [23:15:46.266] | : . .. .. .. .. ..$ user : NULL [23:15:46.266] | : . .. .. .. .. ..$ revtunnel : logi NA [23:15:46.266] | : . .. .. .. .. ..$ rshlogfile : NULL [23:15:46.266] | : . .. .. .. .. ..$ rshopts : NULL [23:15:46.266] | : . .. .. .. .. ..$ rank : int 1 [23:15:46.266] | : . .. .. .. .. ..$ manual : logi FALSE [23:15:46.266] | : . .. .. .. .. ..$ dryrun : logi FALSE [23:15:46.266] | : . .. .. .. .. ..$ quiet : logi FALSE [23:15:46.266] | : . .. .. .. .. ..$ setup_strategy : chr "parallel" [23:15:46.266] | : . .. .. .. .. ..$ calls : logi FALSE [23:15:46.266] | : . .. .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [23:15:46.266] | : . .. .. ..- attr(*, "calls")=Dotted pair list of 16 [23:15:46.266] | : . .. .. .. ..$ : language future:::testme("tweak") [23:15:46.266] | : . .. .. .. ..$ : language source(file.path(path, "run.R")) [23:15:46.266] | : . .. .. .. ..$ : language withVisible(eval(ei, envir)) [23:15:46.266] | : . .. .. .. ..$ : language eval(ei, envir) [23:15:46.266] | : . .. .. .. ..$ : language eval(ei, envir) [23:15:46.266] | : . .. .. .. ..$ : language source(testme[["script"]], echo = TRUE) [23:15:46.266] | : . .. .. .. ..$ : language withVisible(eval(ei, envir)) [23:15:46.266] | : . .. .. .. ..$ : language eval(ei, envir) [23:15:46.266] | : . .. .. .. ..$ : language eval(ei, envir) [23:15:46.266] | : . .. .. .. ..$ : language local({ cl <- makeClusterPSOCK(1L) ... [23:15:46.266] | : . .. .. .. ..$ : language eval.parent(substitute(eval(quote(expr), envir))) [23:15:46.266] | : . .. .. .. ..$ : language eval(expr, p) [23:15:46.266] | : . .. .. .. ..$ : language eval(expr, p) [23:15:46.266] | : . .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [23:15:46.266] | : . .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [23:15:46.266] | : . .. .. .. ..$ : language makeClusterPSOCK(1L) [23:15:46.266] | : . .. .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [23:15:46.266] | : . .. ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [23:15:46.266] | : . - attr(*, "call")= language future::plan(future::cluster, workers = cl) [23:15:46.342] | : . init: TRUE [23:15:46.342] | : . makeFutureBackend() ... [23:15:46.343] | : . ' Backend function: <'NULL'> [23:15:46.343] | : . ' Evaluator tweak arguments: [n=1] [23:15:46.343] | : . ' List of 1 [23:15:46.343] | : . ' $ workers:List of 1 [23:15:46.343] | : . ' ..$ :List of 4 [23:15:46.343] | : . ' .. ..$ con : 'sockconn' int 4 [23:15:46.343] | : . ' .. .. ..- attr(*, "conn_id")= [23:15:46.343] | : . ' .. ..$ host : chr "localhost" [23:15:46.343] | : . ' .. .. ..- attr(*, "localhost")= logi TRUE [23:15:46.343] | : . ' .. ..$ rank : int 0 [23:15:46.343] | : . ' .. ..$ session_info:List of 9 [23:15:46.343] | : . ' .. .. ..$ process :List of 1 [23:15:46.343] | : . ' .. .. .. ..$ pid: int 25240 [23:15:46.343] | : . ' .. .. ..$ r :List of 16 [23:15:46.343] | : . ' .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [23:15:46.343] | : . ' .. .. .. ..$ arch : chr "x86_64" [23:15:46.343] | : . ' .. .. .. ..$ os : chr "mingw32" [23:15:46.343] | : . ' .. .. .. ..$ crt : chr "ucrt" [23:15:46.343] | : . ' .. .. .. ..$ system : chr "x86_64, mingw32" [23:15:46.343] | : . ' .. .. .. ..$ status : chr "Under development (unstable)" [23:15:46.343] | : . ' .. .. .. ..$ major : chr "4" [23:15:46.343] | : . ' .. .. .. ..$ minor : chr "6.0" [23:15:46.343] | : . ' .. .. .. ..$ year : chr "2025" [23:15:46.343] | : . ' .. .. .. ..$ month : chr "11" [23:15:46.343] | : . ' .. .. .. ..$ day : chr "15" [23:15:46.343] | : . ' .. .. .. ..$ svn rev : chr "89024" [23:15:46.343] | : . ' .. .. .. ..$ language : chr "R" [23:15:46.343] | : . ' .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-11-15 r89024 ucrt)" [23:15:46.343] | : . ' .. .. .. ..$ nickname : chr "Unsuffered Consequences" [23:15:46.343] | : . ' .. .. .. ..$ os.type : chr "windows" [23:15:46.343] | : . ' .. .. ..$ system :List of 9 [23:15:46.343] | : . ' .. .. .. ..$ sysname : chr "Windows" [23:15:46.343] | : . ' .. .. .. ..$ release : chr "Server x64" [23:15:46.343] | : . ' .. .. .. ..$ version : chr "build 20348" [23:15:46.343] | : . ' .. .. .. ..$ nodename : chr "CRANWIN3" [23:15:46.343] | : . ' .. .. .. ..$ machine : chr "x86-64" [23:15:46.343] | : . ' .. .. .. ..$ login : chr "CRAN" [23:15:46.343] | : . ' .. .. .. ..$ user : chr "CRAN" [23:15:46.343] | : . ' .. .. .. ..$ effective_user: chr "CRAN" [23:15:46.343] | : . ' .. .. .. ..$ udomain : chr "CRANWIN3" [23:15:46.343] | : . ' .. .. ..$ l10n :List of 5 [23:15:46.343] | : . ' .. .. .. ..$ MBCS : logi TRUE [23:15:46.343] | : . ' .. .. .. ..$ UTF-8 : logi TRUE [23:15:46.343] | : . ' .. .. .. ..$ Latin-1 : logi FALSE [23:15:46.343] | : . ' .. .. .. ..$ codepage : int 65001 [23:15:46.343] | : . ' .. .. .. ..$ system.codepage: int 65001 [23:15:46.343] | : . ' .. .. ..$ extSoftVersion: Named chr [1:11] "1.3.1" "1.0.8, 13-Jul-2019" "5.8.1" "1.24" ... [23:15:46.343] | : . ' .. .. .. ..- attr(*, "names")= chr [1:11] "zlib" "bzlib" "xz" "libdeflate" ... [23:15:46.343] | : . ' .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [23:15:46.343] | : . ' .. .. ..$ tempdir : chr "D:\\temp\\2025_11_16_23_10_16_9296\\RtmpmiDN8r" [23:15:46.343] | : . ' .. .. ..$ libs : chr [1:2] "D:/temp/2025_11_16_23_10_16_9296/RtmpOmYtQ8/RLIBS_10f20545821a2" "D:/RCompile/recent/R/library" [23:15:46.343] | : . ' .. .. ..$ pkgs : NULL [23:15:46.343] | : . ' .. ..- attr(*, "options")=List of 35 [23:15:46.343] | : . ' .. .. ..$ worker : chr "localhost" [23:15:46.343] | : . ' .. .. .. ..- attr(*, "localhost")= logi TRUE [23:15:46.343] | : . ' .. .. ..$ master : chr "localhost" [23:15:46.343] | : . ' .. .. ..$ port : int 23755 [23:15:46.343] | : . ' .. .. ..$ connectTimeout : num 120 [23:15:46.343] | : . ' .. .. ..$ timeout : num 120 [23:15:46.343] | : . ' .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [23:15:46.343] | : . ' .. .. ..$ homogeneous : logi TRUE [23:15:46.343] | : . ' .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:48988:CRANWIN3:CRAN"| __truncated__ [23:15:46.343] | : . ' .. .. ..$ rscript_envs : NULL [23:15:46.343] | : . ' .. .. ..$ rscript_libs : NULL [23:15:46.343] | : . ' .. .. ..$ rscript_startup : NULL [23:15:46.343] | : . ' .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [23:15:46.343] | : . ' .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [23:15:46.343] | : . ' .. .. ..$ methods : logi TRUE [23:15:46.343] | : . ' .. .. ..$ socketOptions : chr "no-delay" [23:15:46.343] | : . ' .. .. ..$ useXDR : logi FALSE [23:15:46.343] | : . ' .. .. ..$ outfile : chr "/dev/null" [23:15:46.343] | : . ' .. .. ..$ renice : int NA [23:15:46.343] | : . ' .. .. ..$ rshcmd : NULL [23:15:46.343] | : . ' .. .. ..$ user : chr(0) [23:15:46.343] | : . ' .. .. ..$ revtunnel : logi FALSE [23:15:46.343] | : . ' .. .. ..$ rshlogfile : NULL [23:15:46.343] | : . ' .. .. ..$ rshopts : chr(0) [23:15:46.343] | : . ' .. .. ..$ rank : int 0 [23:15:46.343] | : . ' .. .. ..$ manual : logi FALSE [23:15:46.343] | : . ' .. .. ..$ dryrun : logi FALSE [23:15:46.343] | : . ' .. .. ..$ quiet : logi FALSE [23:15:46.343] | : . ' .. .. ..$ setup_strategy : chr "parallel" [23:15:46.343] | : . ' .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [23:15:46.343] | : . ' .. .. ..$ rshcmd_label : NULL [23:15:46.343] | : . ' .. .. ..$ rsh_call : NULL [23:15:46.343] | : . ' .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [23:15:46.343] | : . ' .. .. ..$ localMachine : logi TRUE [23:15:46.343] | : . ' .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [23:15:46.343] | : . ' master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [23:15:46.343] | : . ' 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [23:15:46.343] | : . ' 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [23:15:46.343] | : . ' rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [23:15:46.343] | : . ' "cmd", "sh", "none"), default_packages = c("datasets", "utils", [23:15:46.343] | : . ' "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [23:15:46.343] | : . ' socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [23:15:46.343] | : . ' "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [23:15:46.343] | : . ' FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [23:15:46.343] | : . ' NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [23:15:46.343] | : . ' NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [23:15:46.343] | : . ' setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [23:15:46.343] | : . ' "parallel"), calls = getOption2("parallelly.makeNodePSOCK.calls", [23:15:46.343] | : . ' FALSE), action = c("launch", "options"), verbose = FALSE) [23:15:46.343] | : . ' .. .. ..$ arguments :List of 29 [23:15:46.343] | : . ' .. .. .. ..$ worker : chr "localhost" [23:15:46.343] | : . ' .. .. .. ..$ master : NULL [23:15:46.343] | : . ' .. .. .. ..$ port : int 23755 [23:15:46.343] | : . ' .. .. .. ..$ connectTimeout : num 120 [23:15:46.343] | : . ' .. .. .. ..$ timeout : num 120 [23:15:46.343] | : . ' .. .. .. ..$ rscript : NULL [23:15:46.343] | : . ' .. .. .. ..$ homogeneous : NULL [23:15:46.343] | : . ' .. .. .. ..$ rscript_args : NULL [23:15:46.343] | : . ' .. .. .. ..$ rscript_envs : NULL [23:15:46.343] | : . ' .. .. .. ..$ rscript_libs : NULL [23:15:46.343] | : . ' .. .. .. ..$ rscript_startup : NULL [23:15:46.343] | : . ' .. .. .. ..$ rscript_sh : chr "auto" [23:15:46.343] | : . ' .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [23:15:46.343] | : . ' .. .. .. ..$ methods : logi TRUE [23:15:46.343] | : . ' .. .. .. ..$ socketOptions : chr "no-delay" [23:15:46.343] | : . ' .. .. .. ..$ useXDR : logi FALSE [23:15:46.343] | : . ' .. .. .. ..$ outfile : chr "/dev/null" [23:15:46.343] | : . ' .. .. .. ..$ renice : int NA [23:15:46.343] | : . ' .. .. .. ..$ rshcmd : NULL [23:15:46.343] | : . ' .. .. .. ..$ user : NULL [23:15:46.343] | : . ' .. .. .. ..$ revtunnel : logi NA [23:15:46.343] | : . ' .. .. .. ..$ rshlogfile : NULL [23:15:46.343] | : . ' .. .. .. ..$ rshopts : NULL [23:15:46.343] | : . ' .. .. .. ..$ rank : int 1 [23:15:46.343] | : . ' .. .. .. ..$ manual : logi FALSE [23:15:46.343] | : . ' .. .. .. ..$ dryrun : logi FALSE [23:15:46.343] | : . ' .. .. .. ..$ quiet : logi FALSE [23:15:46.343] | : . ' .. .. .. ..$ setup_strategy : chr "parallel" [23:15:46.343] | : . ' .. .. .. ..$ calls : logi FALSE [23:15:46.343] | : . ' .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [23:15:46.343] | : . ' .. ..- attr(*, "calls")=Dotted pair list of 16 [23:15:46.343] | : . ' .. .. ..$ : language future:::testme("tweak") [23:15:46.343] | : . ' .. .. ..$ : language source(file.path(path, "run.R")) [23:15:46.343] | : . ' .. .. ..$ : language withVisible(eval(ei, envir)) [23:15:46.343] | : . ' .. .. ..$ : language eval(ei, envir) [23:15:46.343] | : . ' .. .. ..$ : language eval(ei, envir) [23:15:46.343] | : . ' .. .. ..$ : language source(testme[["script"]], echo = TRUE) [23:15:46.343] | : . ' .. .. ..$ : language withVisible(eval(ei, envir)) [23:15:46.343] | : . ' .. .. ..$ : language eval(ei, envir) [23:15:46.343] | : . ' .. .. ..$ : language eval(ei, envir) [23:15:46.343] | : . ' .. .. ..$ : language local({ cl <- makeClusterPSOCK(1L) ... [23:15:46.343] | : . ' .. .. ..$ : language eval.parent(substitute(eval(quote(expr), envir))) [23:15:46.343] | : . ' .. .. ..$ : language eval(expr, p) [23:15:46.343] | : . ' .. .. ..$ : language eval(expr, p) [23:15:46.343] | : . ' .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [23:15:46.343] | : . ' .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [23:15:46.343] | : . ' .. .. ..$ : language makeClusterPSOCK(1L) [23:15:46.343] | : . ' .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [23:15:46.343] | : . ' ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [23:15:46.418] | : . ' Evaluator formal arguments: [n=1] [23:15:46.418] | : . ' Dotted pair list of 1 [23:15:46.418] | : . ' $ workers:List of 1 [23:15:46.418] | : . ' ..$ :List of 4 [23:15:46.418] | : . ' .. ..$ con : 'sockconn' int 4 [23:15:46.418] | : . ' .. .. ..- attr(*, "conn_id")= [23:15:46.418] | : . ' .. ..$ host : chr "localhost" [23:15:46.418] | : . ' .. .. ..- attr(*, "localhost")= logi TRUE [23:15:46.418] | : . ' .. ..$ rank : int 0 [23:15:46.418] | : . ' .. ..$ session_info:List of 9 [23:15:46.418] | : . ' .. .. ..$ process :List of 1 [23:15:46.418] | : . ' .. .. .. ..$ pid: int 25240 [23:15:46.418] | : . ' .. .. ..$ r :List of 16 [23:15:46.418] | : . ' .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [23:15:46.418] | : . ' .. .. .. ..$ arch : chr "x86_64" [23:15:46.418] | : . ' .. .. .. ..$ os : chr "mingw32" [23:15:46.418] | : . ' .. .. .. ..$ crt : chr "ucrt" [23:15:46.418] | : . ' .. .. .. ..$ system : chr "x86_64, mingw32" [23:15:46.418] | : . ' .. .. .. ..$ status : chr "Under development (unstable)" [23:15:46.418] | : . ' .. .. .. ..$ major : chr "4" [23:15:46.418] | : . ' .. .. .. ..$ minor : chr "6.0" [23:15:46.418] | : . ' .. .. .. ..$ year : chr "2025" [23:15:46.418] | : . ' .. .. .. ..$ month : chr "11" [23:15:46.418] | : . ' .. .. .. ..$ day : chr "15" [23:15:46.418] | : . ' .. .. .. ..$ svn rev : chr "89024" [23:15:46.418] | : . ' .. .. .. ..$ language : chr "R" [23:15:46.418] | : . ' .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-11-15 r89024 ucrt)" [23:15:46.418] | : . ' .. .. .. ..$ nickname : chr "Unsuffered Consequences" [23:15:46.418] | : . ' .. .. .. ..$ os.type : chr "windows" [23:15:46.418] | : . ' .. .. ..$ system :List of 9 [23:15:46.418] | : . ' .. .. .. ..$ sysname : chr "Windows" [23:15:46.418] | : . ' .. .. .. ..$ release : chr "Server x64" [23:15:46.418] | : . ' .. .. .. ..$ version : chr "build 20348" [23:15:46.418] | : . ' .. .. .. ..$ nodename : chr "CRANWIN3" [23:15:46.418] | : . ' .. .. .. ..$ machine : chr "x86-64" [23:15:46.418] | : . ' .. .. .. ..$ login : chr "CRAN" [23:15:46.418] | : . ' .. .. .. ..$ user : chr "CRAN" [23:15:46.418] | : . ' .. .. .. ..$ effective_user: chr "CRAN" [23:15:46.418] | : . ' .. .. .. ..$ udomain : chr "CRANWIN3" [23:15:46.418] | : . ' .. .. ..$ l10n :List of 5 [23:15:46.418] | : . ' .. .. .. ..$ MBCS : logi TRUE [23:15:46.418] | : . ' .. .. .. ..$ UTF-8 : logi TRUE [23:15:46.418] | : . ' .. .. .. ..$ Latin-1 : logi FALSE [23:15:46.418] | : . ' .. .. .. ..$ codepage : int 65001 [23:15:46.418] | : . ' .. .. .. ..$ system.codepage: int 65001 [23:15:46.418] | : . ' .. .. ..$ extSoftVersion: Named chr [1:11] "1.3.1" "1.0.8, 13-Jul-2019" "5.8.1" "1.24" ... [23:15:46.418] | : . ' .. .. .. ..- attr(*, "names")= chr [1:11] "zlib" "bzlib" "xz" "libdeflate" ... [23:15:46.418] | : . ' .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [23:15:46.418] | : . ' .. .. ..$ tempdir : chr "D:\\temp\\2025_11_16_23_10_16_9296\\RtmpmiDN8r" [23:15:46.418] | : . ' .. .. ..$ libs : chr [1:2] "D:/temp/2025_11_16_23_10_16_9296/RtmpOmYtQ8/RLIBS_10f20545821a2" "D:/RCompile/recent/R/library" [23:15:46.418] | : . ' .. .. ..$ pkgs : NULL [23:15:46.418] | : . ' .. ..- attr(*, "options")=List of 35 [23:15:46.418] | : . ' .. .. ..$ worker : chr "localhost" [23:15:46.418] | : . ' .. .. .. ..- attr(*, "localhost")= logi TRUE [23:15:46.418] | : . ' .. .. ..$ master : chr "localhost" [23:15:46.418] | : . ' .. .. ..$ port : int 23755 [23:15:46.418] | : . ' .. .. ..$ connectTimeout : num 120 [23:15:46.418] | : . ' .. .. ..$ timeout : num 120 [23:15:46.418] | : . ' .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [23:15:46.418] | : . ' .. .. ..$ homogeneous : logi TRUE [23:15:46.418] | : . ' .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:48988:CRANWIN3:CRAN"| __truncated__ [23:15:46.418] | : . ' .. .. ..$ rscript_envs : NULL [23:15:46.418] | : . ' .. .. ..$ rscript_libs : NULL [23:15:46.418] | : . ' .. .. ..$ rscript_startup : NULL [23:15:46.418] | : . ' .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [23:15:46.418] | : . ' .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [23:15:46.418] | : . ' .. .. ..$ methods : logi TRUE [23:15:46.418] | : . ' .. .. ..$ socketOptions : chr "no-delay" [23:15:46.418] | : . ' .. .. ..$ useXDR : logi FALSE [23:15:46.418] | : . ' .. .. ..$ outfile : chr "/dev/null" [23:15:46.418] | : . ' .. .. ..$ renice : int NA [23:15:46.418] | : . ' .. .. ..$ rshcmd : NULL [23:15:46.418] | : . ' .. .. ..$ user : chr(0) [23:15:46.418] | : . ' .. .. ..$ revtunnel : logi FALSE [23:15:46.418] | : . ' .. .. ..$ rshlogfile : NULL [23:15:46.418] | : . ' .. .. ..$ rshopts : chr(0) [23:15:46.418] | : . ' .. .. ..$ rank : int 0 [23:15:46.418] | : . ' .. .. ..$ manual : logi FALSE [23:15:46.418] | : . ' .. .. ..$ dryrun : logi FALSE [23:15:46.418] | : . ' .. .. ..$ quiet : logi FALSE [23:15:46.418] | : . ' .. .. ..$ setup_strategy : chr "parallel" [23:15:46.418] | : . ' .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [23:15:46.418] | : . ' .. .. ..$ rshcmd_label : NULL [23:15:46.418] | : . ' .. .. ..$ rsh_call : NULL [23:15:46.418] | : . ' .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [23:15:46.418] | : . ' .. .. ..$ localMachine : logi TRUE [23:15:46.418] | : . ' .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [23:15:46.418] | : . ' master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [23:15:46.418] | : . ' 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [23:15:46.418] | : . ' 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [23:15:46.418] | : . ' rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [23:15:46.418] | : . ' "cmd", "sh", "none"), default_packages = c("datasets", "utils", [23:15:46.418] | : . ' "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [23:15:46.418] | : . ' socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [23:15:46.418] | : . ' "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [23:15:46.418] | : . ' FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [23:15:46.418] | : . ' NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [23:15:46.418] | : . ' NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [23:15:46.418] | : . ' setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [23:15:46.418] | : . ' "parallel"), calls = getOption2("parallelly.makeNodePSOCK.calls", [23:15:46.418] | : . ' FALSE), action = c("launch", "options"), verbose = FALSE) [23:15:46.418] | : . ' .. .. ..$ arguments :List of 29 [23:15:46.418] | : . ' .. .. .. ..$ worker : chr "localhost" [23:15:46.418] | : . ' .. .. .. ..$ master : NULL [23:15:46.418] | : . ' .. .. .. ..$ port : int 23755 [23:15:46.418] | : . ' .. .. .. ..$ connectTimeout : num 120 [23:15:46.418] | : . ' .. .. .. ..$ timeout : num 120 [23:15:46.418] | : . ' .. .. .. ..$ rscript : NULL [23:15:46.418] | : . ' .. .. .. ..$ homogeneous : NULL [23:15:46.418] | : . ' .. .. .. ..$ rscript_args : NULL [23:15:46.418] | : . ' .. .. .. ..$ rscript_envs : NULL [23:15:46.418] | : . ' .. .. .. ..$ rscript_libs : NULL [23:15:46.418] | : . ' .. .. .. ..$ rscript_startup : NULL [23:15:46.418] | : . ' .. .. .. ..$ rscript_sh : chr "auto" [23:15:46.418] | : . ' .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [23:15:46.418] | : . ' .. .. .. ..$ methods : logi TRUE [23:15:46.418] | : . ' .. .. .. ..$ socketOptions : chr "no-delay" [23:15:46.418] | : . ' .. .. .. ..$ useXDR : logi FALSE [23:15:46.418] | : . ' .. .. .. ..$ outfile : chr "/dev/null" [23:15:46.418] | : . ' .. .. .. ..$ renice : int NA [23:15:46.418] | : . ' .. .. .. ..$ rshcmd : NULL [23:15:46.418] | : . ' .. .. .. ..$ user : NULL [23:15:46.418] | : . ' .. .. .. ..$ revtunnel : logi NA [23:15:46.418] | : . ' .. .. .. ..$ rshlogfile : NULL [23:15:46.418] | : . ' .. .. .. ..$ rshopts : NULL [23:15:46.418] | : . ' .. .. .. ..$ rank : int 1 [23:15:46.418] | : . ' .. .. .. ..$ manual : logi FALSE [23:15:46.418] | : . ' .. .. .. ..$ dryrun : logi FALSE [23:15:46.418] | : . ' .. .. .. ..$ quiet : logi FALSE [23:15:46.418] | : . ' .. .. .. ..$ setup_strategy : chr "parallel" [23:15:46.418] | : . ' .. .. .. ..$ calls : logi FALSE [23:15:46.418] | : . ' .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [23:15:46.418] | : . ' .. ..- attr(*, "calls")=Dotted pair list of 16 [23:15:46.418] | : . ' .. .. ..$ : language future:::testme("tweak") [23:15:46.418] | : . ' .. .. ..$ : language source(file.path(path, "run.R")) [23:15:46.418] | : . ' .. .. ..$ : language withVisible(eval(ei, envir)) [23:15:46.418] | : . ' .. .. ..$ : language eval(ei, envir) [23:15:46.418] | : . ' .. .. ..$ : language eval(ei, envir) [23:15:46.418] | : . ' .. .. ..$ : language source(testme[["script"]], echo = TRUE) [23:15:46.418] | : . ' .. .. ..$ : language withVisible(eval(ei, envir)) [23:15:46.418] | : . ' .. .. ..$ : language eval(ei, envir) [23:15:46.418] | : . ' .. .. ..$ : language eval(ei, envir) [23:15:46.418] | : . ' .. .. ..$ : language local({ cl <- makeClusterPSOCK(1L) ... [23:15:46.418] | : . ' .. .. ..$ : language eval.parent(substitute(eval(quote(expr), envir))) [23:15:46.418] | : . ' .. .. ..$ : language eval(expr, p) [23:15:46.418] | : . ' .. .. ..$ : language eval(expr, p) [23:15:46.418] | : . ' .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [23:15:46.418] | : . ' .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [23:15:46.418] | : . ' .. .. ..$ : language makeClusterPSOCK(1L) [23:15:46.418] | : . ' .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [23:15:46.418] | : . ' ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [23:15:46.494] | : . ' Arguments passed to the future-backend factory: [n=1] [23:15:46.494] | : . ' List of 1 [23:15:46.494] | : . ' $ workers:List of 1 [23:15:46.494] | : . ' ..$ :List of 4 [23:15:46.494] | : . ' .. ..$ con : 'sockconn' int 4 [23:15:46.494] | : . ' .. .. ..- attr(*, "conn_id")= [23:15:46.494] | : . ' .. ..$ host : chr "localhost" [23:15:46.494] | : . ' .. .. ..- attr(*, "localhost")= logi TRUE [23:15:46.494] | : . ' .. ..$ rank : int 0 [23:15:46.494] | : . ' .. ..$ session_info:List of 9 [23:15:46.494] | : . ' .. .. ..$ process :List of 1 [23:15:46.494] | : . ' .. .. .. ..$ pid: int 25240 [23:15:46.494] | : . ' .. .. ..$ r :List of 16 [23:15:46.494] | : . ' .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [23:15:46.494] | : . ' .. .. .. ..$ arch : chr "x86_64" [23:15:46.494] | : . ' .. .. .. ..$ os : chr "mingw32" [23:15:46.494] | : . ' .. .. .. ..$ crt : chr "ucrt" [23:15:46.494] | : . ' .. .. .. ..$ system : chr "x86_64, mingw32" [23:15:46.494] | : . ' .. .. .. ..$ status : chr "Under development (unstable)" [23:15:46.494] | : . ' .. .. .. ..$ major : chr "4" [23:15:46.494] | : . ' .. .. .. ..$ minor : chr "6.0" [23:15:46.494] | : . ' .. .. .. ..$ year : chr "2025" [23:15:46.494] | : . ' .. .. .. ..$ month : chr "11" [23:15:46.494] | : . ' .. .. .. ..$ day : chr "15" [23:15:46.494] | : . ' .. .. .. ..$ svn rev : chr "89024" [23:15:46.494] | : . ' .. .. .. ..$ language : chr "R" [23:15:46.494] | : . ' .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-11-15 r89024 ucrt)" [23:15:46.494] | : . ' .. .. .. ..$ nickname : chr "Unsuffered Consequences" [23:15:46.494] | : . ' .. .. .. ..$ os.type : chr "windows" [23:15:46.494] | : . ' .. .. ..$ system :List of 9 [23:15:46.494] | : . ' .. .. .. ..$ sysname : chr "Windows" [23:15:46.494] | : . ' .. .. .. ..$ release : chr "Server x64" [23:15:46.494] | : . ' .. .. .. ..$ version : chr "build 20348" [23:15:46.494] | : . ' .. .. .. ..$ nodename : chr "CRANWIN3" [23:15:46.494] | : . ' .. .. .. ..$ machine : chr "x86-64" [23:15:46.494] | : . ' .. .. .. ..$ login : chr "CRAN" [23:15:46.494] | : . ' .. .. .. ..$ user : chr "CRAN" [23:15:46.494] | : . ' .. .. .. ..$ effective_user: chr "CRAN" [23:15:46.494] | : . ' .. .. .. ..$ udomain : chr "CRANWIN3" [23:15:46.494] | : . ' .. .. ..$ l10n :List of 5 [23:15:46.494] | : . ' .. .. .. ..$ MBCS : logi TRUE [23:15:46.494] | : . ' .. .. .. ..$ UTF-8 : logi TRUE [23:15:46.494] | : . ' .. .. .. ..$ Latin-1 : logi FALSE [23:15:46.494] | : . ' .. .. .. ..$ codepage : int 65001 [23:15:46.494] | : . ' .. .. .. ..$ system.codepage: int 65001 [23:15:46.494] | : . ' .. .. ..$ extSoftVersion: Named chr [1:11] "1.3.1" "1.0.8, 13-Jul-2019" "5.8.1" "1.24" ... [23:15:46.494] | : . ' .. .. .. ..- attr(*, "names")= chr [1:11] "zlib" "bzlib" "xz" "libdeflate" ... [23:15:46.494] | : . ' .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [23:15:46.494] | : . ' .. .. ..$ tempdir : chr "D:\\temp\\2025_11_16_23_10_16_9296\\RtmpmiDN8r" [23:15:46.494] | : . ' .. .. ..$ libs : chr [1:2] "D:/temp/2025_11_16_23_10_16_9296/RtmpOmYtQ8/RLIBS_10f20545821a2" "D:/RCompile/recent/R/library" [23:15:46.494] | : . ' .. .. ..$ pkgs : NULL [23:15:46.494] | : . ' .. ..- attr(*, "options")=List of 35 [23:15:46.494] | : . ' .. .. ..$ worker : chr "localhost" [23:15:46.494] | : . ' .. .. .. ..- attr(*, "localhost")= logi TRUE [23:15:46.494] | : . ' .. .. ..$ master : chr "localhost" [23:15:46.494] | : . ' .. .. ..$ port : int 23755 [23:15:46.494] | : . ' .. .. ..$ connectTimeout : num 120 [23:15:46.494] | : . ' .. .. ..$ timeout : num 120 [23:15:46.494] | : . ' .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [23:15:46.494] | : . ' .. .. ..$ homogeneous : logi TRUE [23:15:46.494] | : . ' .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:48988:CRANWIN3:CRAN"| __truncated__ [23:15:46.494] | : . ' .. .. ..$ rscript_envs : NULL [23:15:46.494] | : . ' .. .. ..$ rscript_libs : NULL [23:15:46.494] | : . ' .. .. ..$ rscript_startup : NULL [23:15:46.494] | : . ' .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [23:15:46.494] | : . ' .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [23:15:46.494] | : . ' .. .. ..$ methods : logi TRUE [23:15:46.494] | : . ' .. .. ..$ socketOptions : chr "no-delay" [23:15:46.494] | : . ' .. .. ..$ useXDR : logi FALSE [23:15:46.494] | : . ' .. .. ..$ outfile : chr "/dev/null" [23:15:46.494] | : . ' .. .. ..$ renice : int NA [23:15:46.494] | : . ' .. .. ..$ rshcmd : NULL [23:15:46.494] | : . ' .. .. ..$ user : chr(0) [23:15:46.494] | : . ' .. .. ..$ revtunnel : logi FALSE [23:15:46.494] | : . ' .. .. ..$ rshlogfile : NULL [23:15:46.494] | : . ' .. .. ..$ rshopts : chr(0) [23:15:46.494] | : . ' .. .. ..$ rank : int 0 [23:15:46.494] | : . ' .. .. ..$ manual : logi FALSE [23:15:46.494] | : . ' .. .. ..$ dryrun : logi FALSE [23:15:46.494] | : . ' .. .. ..$ quiet : logi FALSE [23:15:46.494] | : . ' .. .. ..$ setup_strategy : chr "parallel" [23:15:46.494] | : . ' .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [23:15:46.494] | : . ' .. .. ..$ rshcmd_label : NULL [23:15:46.494] | : . ' .. .. ..$ rsh_call : NULL [23:15:46.494] | : . ' .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [23:15:46.494] | : . ' .. .. ..$ localMachine : logi TRUE [23:15:46.494] | : . ' .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [23:15:46.494] | : . ' master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [23:15:46.494] | : . ' 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [23:15:46.494] | : . ' 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [23:15:46.494] | : . ' rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [23:15:46.494] | : . ' "cmd", "sh", "none"), default_packages = c("datasets", "utils", [23:15:46.494] | : . ' "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [23:15:46.494] | : . ' socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [23:15:46.494] | : . ' "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [23:15:46.494] | : . ' FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [23:15:46.494] | : . ' NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [23:15:46.494] | : . ' NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [23:15:46.494] | : . ' setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [23:15:46.494] | : . ' "parallel"), calls = getOption2("parallelly.makeNodePSOCK.calls", [23:15:46.494] | : . ' FALSE), action = c("launch", "options"), verbose = FALSE) [23:15:46.494] | : . ' .. .. ..$ arguments :List of 29 [23:15:46.494] | : . ' .. .. .. ..$ worker : chr "localhost" [23:15:46.494] | : . ' .. .. .. ..$ master : NULL [23:15:46.494] | : . ' .. .. .. ..$ port : int 23755 [23:15:46.494] | : . ' .. .. .. ..$ connectTimeout : num 120 [23:15:46.494] | : . ' .. .. .. ..$ timeout : num 120 [23:15:46.494] | : . ' .. .. .. ..$ rscript : NULL [23:15:46.494] | : . ' .. .. .. ..$ homogeneous : NULL [23:15:46.494] | : . ' .. .. .. ..$ rscript_args : NULL [23:15:46.494] | : . ' .. .. .. ..$ rscript_envs : NULL [23:15:46.494] | : . ' .. .. .. ..$ rscript_libs : NULL [23:15:46.494] | : . ' .. .. .. ..$ rscript_startup : NULL [23:15:46.494] | : . ' .. .. .. ..$ rscript_sh : chr "auto" [23:15:46.494] | : . ' .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [23:15:46.494] | : . ' .. .. .. ..$ methods : logi TRUE [23:15:46.494] | : . ' .. .. .. ..$ socketOptions : chr "no-delay" [23:15:46.494] | : . ' .. .. .. ..$ useXDR : logi FALSE [23:15:46.494] | : . ' .. .. .. ..$ outfile : chr "/dev/null" [23:15:46.494] | : . ' .. .. .. ..$ renice : int NA [23:15:46.494] | : . ' .. .. .. ..$ rshcmd : NULL [23:15:46.494] | : . ' .. .. .. ..$ user : NULL [23:15:46.494] | : . ' .. .. .. ..$ revtunnel : logi NA [23:15:46.494] | : . ' .. .. .. ..$ rshlogfile : NULL [23:15:46.494] | : . ' .. .. .. ..$ rshopts : NULL [23:15:46.494] | : . ' .. .. .. ..$ rank : int 1 [23:15:46.494] | : . ' .. .. .. ..$ manual : logi FALSE [23:15:46.494] | : . ' .. .. .. ..$ dryrun : logi FALSE [23:15:46.494] | : . ' .. .. .. ..$ quiet : logi FALSE [23:15:46.494] | : . ' .. .. .. ..$ setup_strategy : chr "parallel" [23:15:46.494] | : . ' .. .. .. ..$ calls : logi FALSE [23:15:46.494] | : . ' .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [23:15:46.494] | : . ' .. ..- attr(*, "calls")=Dotted pair list of 16 [23:15:46.494] | : . ' .. .. ..$ : language future:::testme("tweak") [23:15:46.494] | : . ' .. .. ..$ : language source(file.path(path, "run.R")) [23:15:46.494] | : . ' .. .. ..$ : language withVisible(eval(ei, envir)) [23:15:46.494] | : . ' .. .. ..$ : language eval(ei, envir) [23:15:46.494] | : . ' .. .. ..$ : language eval(ei, envir) [23:15:46.494] | : . ' .. .. ..$ : language source(testme[["script"]], echo = TRUE) [23:15:46.494] | : . ' .. .. ..$ : language withVisible(eval(ei, envir)) [23:15:46.494] | : . ' .. .. ..$ : language eval(ei, envir) [23:15:46.494] | : . ' .. .. ..$ : language eval(ei, envir) [23:15:46.494] | : . ' .. .. ..$ : language local({ cl <- makeClusterPSOCK(1L) ... [23:15:46.494] | : . ' .. .. ..$ : language eval.parent(substitute(eval(quote(expr), envir))) [23:15:46.494] | : . ' .. .. ..$ : language eval(expr, p) [23:15:46.494] | : . ' .. .. ..$ : language eval(expr, p) [23:15:46.494] | : . ' .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [23:15:46.494] | : . ' .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [23:15:46.494] | : . ' .. .. ..$ : language makeClusterPSOCK(1L) [23:15:46.494] | : . ' .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [23:15:46.494] | : . ' ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [23:15:46.568] | : . ' ClusterFutureBackend(..., persistent = FALSE, gc = TRUE, earlySignal = TRUE) ... [23:15:46.568] | : . ' , Stopping existing cluster ... [23:15:46.569] | : . ' , ; No pre-existing cluster. Skipping [23:15:46.569] | : . ' , Stopping existing cluster ... done [23:15:46.569] | : . ' , Number of workers: 1 [23:15:46.579] | : . ' , Generated workers UUID [23:15:46.579] | : . ' , Workers UUID: '883a3c0d09d65241e54c4238037caa27' [23:15:46.580] | : . ' ClusterFutureBackend(..., persistent = FALSE, gc = TRUE, earlySignal = TRUE) ... done [23:15:46.580] | : . ' Backend: <'ClusterFutureBackend', 'MultiprocessFutureBackend', 'FutureBackend', 'environment'> [23:15:46.580] | : . makeFutureBackend() ... done [23:15:46.581] | : plan(): plan_init() of 'tweaked', 'cluster', 'multiprocess', 'future', 'function' ... done [23:15:46.581] | : nbrOfWorkers(NULL) ... [23:15:46.581] | : . List of 4 [23:15:46.581] | : . $ : language plan_set(newStack, skip = .skip, cleanup = .cleanup, init = .init, debug = debug) [23:15:46.581] | : . $ : language with_assert({ nbrOfWorkers <- nbrOfWorkers() ... [23:15:46.581] | : . $ : language nbrOfWorkers() [23:15:46.581] | : . $ : language nbrOfWorkers.NULL() [23:15:46.585] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:15:46.585] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:15:46.586] | : . Number of workers: 1 [23:15:46.586] | : nbrOfWorkers(NULL) ... done [23:15:46.586] | : plan(): nbrOfWorkers() = 1 [23:15:46.586] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... done [23:15:46.587] plan(<'call'>, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:15:46.594] plan(<'name'>, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:15:46.595] | plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:15:46.595] | : plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... [23:15:46.595] | : . all.equal() for FutureStrategyList ... [23:15:46.596] | : . ' New stack: [23:15:46.596] | : . ' List of 1 [23:15:46.596] | : . ' $ :function (..., envir = parent.frame()) [23:15:46.596] | : . ' ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:15:46.596] | : . ' ..- attr(*, "init")= logi TRUE [23:15:46.596] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:46.596] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.596] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.596] | : . ' ..- attr(*, "call")= language plan(sequential) [23:15:46.596] | : . ' - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:46.604] | : . ' Old stack: [23:15:46.604] | : . ' List of 1 [23:15:46.604] | : . ' $ :function (..., workers = list(list(con = 4L, host = "localhost", rank = 0L, [23:15:46.604] | : . ' session_info = list(process = list(pid = 25240L), r = list(platform = "x86_64-w64-mingw32", [23:15:46.604] | : . ' arch = "x86_64", os = "mingw32", crt = "ucrt", system = "x86_64, mingw32", [23:15:46.604] | : . ' status = "Under development (unstable)", major = "4", minor = "6.0", [23:15:46.604] | : . ' year = "2025", month = "11", day = "15", `svn rev` = "89024", language = "R", [23:15:46.604] | : . ' version.string = "R Under development (unstable) (2025-11-15 r89024 ucrt)", [23:15:46.604] | : . ' nickname = "Unsuffered Consequences", os.type = "windows"), system = list( [23:15:46.604] | : . ' sysname = "Windows", release = "Server x64", version = "build 20348", [23:15:46.604] | : . ' nodename = "CRANWIN3", machine = "x86-64", login = "CRAN", user = "CRAN", [23:15:46.604] | : . ' effective_user = "CRAN", udomain = "CRANWIN3"), l10n = list(MBCS = TRUE, [23:15:46.604] | : . ' `UTF-8` = TRUE, `Latin-1` = FALSE, codepage = 65001L, system.codepage = 65001L), [23:15:46.604] | : . ' extSoftVersion = c(zlib = "1.3.1", bzlib = "1.0.8, 13-Jul-2019", [23:15:46.604] | : . ' xz = "5.8.1", libdeflate = "1.24", zstd = "1.5.7", PCRE = "10.46 2025-08-27", [23:15:46.604] | : . ' ICU = "77.1", TRE = "TRE 0.8.0 R_fixes (BSD)", iconv = "win_iconv", [23:15:46.604] | : . ' readline = "", BLAS = ""), pwd = "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests", [23:15:46.604] | : . ' tempdir = "D:\\temp\\2025_11_16_23_10_16_9296\\RtmpmiDN8r", libs = c("D:/temp/2025_11_16_23_10_16_9296/RtmpOmYtQ8/RLIBS_10f20545821a2", [23:15:46.604] | : . ' ..- attr(*, "class")= chr [1:5] "tweaked" "cluster" "multiprocess" "future" ... [23:15:46.604] | : . ' ..- attr(*, "init")= chr "done" [23:15:46.604] | : . ' ..- attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [23:15:46.604] | : . ' earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [23:15:46.604] | : . ' .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [23:15:46.604] | : . ' ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [23:15:46.604] | : . ' ..- attr(*, "tweaks")=List of 1 [23:15:46.604] | : . ' .. ..$ workers:List of 1 [23:15:46.604] | : . ' .. .. ..$ :List of 4 [23:15:46.604] | : . ' .. .. .. ..$ con : 'sockconn' int 4 [23:15:46.604] | : . ' .. .. .. .. ..- attr(*, "conn_id")= [23:15:46.604] | : . ' .. .. .. ..$ host : chr "localhost" [23:15:46.604] | : . ' .. .. .. .. ..- attr(*, "localhost")= logi TRUE [23:15:46.604] | : . ' .. .. .. ..$ rank : int 0 [23:15:46.604] | : . ' .. .. .. ..$ session_info:List of 9 [23:15:46.604] | : . ' .. .. .. .. ..$ process :List of 1 [23:15:46.604] | : . ' .. .. .. .. .. ..$ pid: int 25240 [23:15:46.604] | : . ' .. .. .. .. ..$ r :List of 16 [23:15:46.604] | : . ' .. .. .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [23:15:46.604] | : . ' .. .. .. .. .. ..$ arch : chr "x86_64" [23:15:46.604] | : . ' .. .. .. .. .. ..$ os : chr "mingw32" [23:15:46.604] | : . ' .. .. .. .. .. ..$ crt : chr "ucrt" [23:15:46.604] | : . ' .. .. .. .. .. ..$ system : chr "x86_64, mingw32" [23:15:46.604] | : . ' .. .. .. .. .. ..$ status : chr "Under development (unstable)" [23:15:46.604] | : . ' .. .. .. .. .. ..$ major : chr "4" [23:15:46.604] | : . ' .. .. .. .. .. ..$ minor : chr "6.0" [23:15:46.604] | : . ' .. .. .. .. .. ..$ year : chr "2025" [23:15:46.604] | : . ' .. .. .. .. .. ..$ month : chr "11" [23:15:46.604] | : . ' .. .. .. .. .. ..$ day : chr "15" [23:15:46.604] | : . ' .. .. .. .. .. ..$ svn rev : chr "89024" [23:15:46.604] | : . ' .. .. .. .. .. ..$ language : chr "R" [23:15:46.604] | : . ' .. .. .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-11-15 r89024 ucrt)" [23:15:46.604] | : . ' .. .. .. .. .. ..$ nickname : chr "Unsuffered Consequences" [23:15:46.604] | : . ' .. .. .. .. .. ..$ os.type : chr "windows" [23:15:46.604] | : . ' .. .. .. .. ..$ system :List of 9 [23:15:46.604] | : . ' .. .. .. .. .. ..$ sysname : chr "Windows" [23:15:46.604] | : . ' .. .. .. .. .. ..$ release : chr "Server x64" [23:15:46.604] | : . ' .. .. .. .. .. ..$ version : chr "build 20348" [23:15:46.604] | : . ' .. .. .. .. .. ..$ nodename : chr "CRANWIN3" [23:15:46.604] | : . ' .. .. .. .. .. ..$ machine : chr "x86-64" [23:15:46.604] | : . ' .. .. .. .. .. ..$ login : chr "CRAN" [23:15:46.604] | : . ' .. .. .. .. .. ..$ user : chr "CRAN" [23:15:46.604] | : . ' .. .. .. .. .. ..$ effective_user: chr "CRAN" [23:15:46.604] | : . ' .. .. .. .. .. ..$ udomain : chr "CRANWIN3" [23:15:46.604] | : . ' .. .. .. .. ..$ l10n :List of 5 [23:15:46.604] | : . ' .. .. .. .. .. ..$ MBCS : logi TRUE [23:15:46.604] | : . ' .. .. .. .. .. ..$ UTF-8 : logi TRUE [23:15:46.604] | : . ' .. .. .. .. .. ..$ Latin-1 : logi FALSE [23:15:46.604] | : . ' .. .. .. .. .. ..$ codepage : int 65001 [23:15:46.604] | : . ' .. .. .. .. .. ..$ system.codepage: int 65001 [23:15:46.604] | : . ' .. .. .. .. ..$ extSoftVersion: Named chr [1:11] "1.3.1" "1.0.8, 13-Jul-2019" "5.8.1" "1.24" ... [23:15:46.604] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:11] "zlib" "bzlib" "xz" "libdeflate" ... [23:15:46.604] | : . ' .. .. .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [23:15:46.604] | : . ' .. .. .. .. ..$ tempdir : chr "D:\\temp\\2025_11_16_23_10_16_9296\\RtmpmiDN8r" [23:15:46.604] | : . ' .. .. .. .. ..$ libs : chr [1:2] "D:/temp/2025_11_16_23_10_16_9296/RtmpOmYtQ8/RLIBS_10f20545821a2" "D:/RCompile/recent/R/library" [23:15:46.604] | : . ' .. .. .. .. ..$ pkgs : NULL [23:15:46.604] | : . ' .. .. .. ..- attr(*, "options")=List of 35 [23:15:46.604] | : . ' .. .. .. .. ..$ worker : chr "localhost" [23:15:46.604] | : . ' .. .. .. .. .. ..- attr(*, "localhost")= logi TRUE [23:15:46.604] | : . ' .. .. .. .. ..$ master : chr "localhost" [23:15:46.604] | : . ' .. .. .. .. ..$ port : int 23755 [23:15:46.604] | : . ' .. .. .. .. ..$ connectTimeout : num 120 [23:15:46.604] | : . ' .. .. .. .. ..$ timeout : num 120 [23:15:46.604] | : . ' .. .. .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [23:15:46.604] | : . ' .. .. .. .. ..$ homogeneous : logi TRUE [23:15:46.604] | : . ' .. .. .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:48988:CRANWIN3:CRAN"| __truncated__ [23:15:46.604] | : . ' .. .. .. .. ..$ rscript_envs : NULL [23:15:46.604] | : . ' .. .. .. .. ..$ rscript_libs : NULL [23:15:46.604] | : . ' .. .. .. .. ..$ rscript_startup : NULL [23:15:46.604] | : . ' .. .. .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [23:15:46.604] | : . ' .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [23:15:46.604] | : . ' .. .. .. .. ..$ methods : logi TRUE [23:15:46.604] | : . ' .. .. .. .. ..$ socketOptions : chr "no-delay" [23:15:46.604] | : . ' .. .. .. .. ..$ useXDR : logi FALSE [23:15:46.604] | : . ' .. .. .. .. ..$ outfile : chr "/dev/null" [23:15:46.604] | : . ' .. .. .. .. ..$ renice : int NA [23:15:46.604] | : . ' .. .. .. .. ..$ rshcmd : NULL [23:15:46.604] | : . ' .. .. .. .. ..$ user : chr(0) [23:15:46.604] | : . ' .. .. .. .. ..$ revtunnel : logi FALSE [23:15:46.604] | : . ' .. .. .. .. ..$ rshlogfile : NULL [23:15:46.604] | : . ' .. .. .. .. ..$ rshopts : chr(0) [23:15:46.604] | : . ' .. .. .. .. ..$ rank : int 0 [23:15:46.604] | : . ' .. .. .. .. ..$ manual : logi FALSE [23:15:46.604] | : . ' .. .. .. .. ..$ dryrun : logi FALSE [23:15:46.604] | : . ' .. .. .. .. ..$ quiet : logi FALSE [23:15:46.604] | : . ' .. .. .. .. ..$ setup_strategy : chr "parallel" [23:15:46.604] | : . ' .. .. .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [23:15:46.604] | : . ' .. .. .. .. ..$ rshcmd_label : NULL [23:15:46.604] | : . ' .. .. .. .. ..$ rsh_call : NULL [23:15:46.604] | : . ' .. .. .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [23:15:46.604] | : . ' .. .. .. .. ..$ localMachine : logi TRUE [23:15:46.604] | : . ' .. .. .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [23:15:46.604] | : . ' master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [23:15:46.604] | : . ' 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [23:15:46.604] | : . ' 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [23:15:46.604] | : . ' rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [23:15:46.604] | : . ' "cmd", "sh", "none"), default_packages = c("datasets", "utils", [23:15:46.604] | : . ' "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [23:15:46.604] | : . ' socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [23:15:46.604] | : . ' "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [23:15:46.604] | : . ' FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [23:15:46.604] | : . ' NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [23:15:46.604] | : . ' NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [23:15:46.604] | : . ' setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [23:15:46.604] | : . ' "parallel"), calls = getOption2("parallelly.makeNodePSOCK.calls", [23:15:46.604] | : . ' FALSE), action = c("launch", "options"), verbose = FALSE) [23:15:46.604] | : . ' .. .. .. .. ..$ arguments :List of 29 [23:15:46.604] | : . ' .. .. .. .. .. ..$ worker : chr "localhost" [23:15:46.604] | : . ' .. .. .. .. .. ..$ master : NULL [23:15:46.604] | : . ' .. .. .. .. .. ..$ port : int 23755 [23:15:46.604] | : . ' .. .. .. .. .. ..$ connectTimeout : num 120 [23:15:46.604] | : . ' .. .. .. .. .. ..$ timeout : num 120 [23:15:46.604] | : . ' .. .. .. .. .. ..$ rscript : NULL [23:15:46.604] | : . ' .. .. .. .. .. ..$ homogeneous : NULL [23:15:46.604] | : . ' .. .. .. .. .. ..$ rscript_args : NULL [23:15:46.604] | : . ' .. .. .. .. .. ..$ rscript_envs : NULL [23:15:46.604] | : . ' .. .. .. .. .. ..$ rscript_libs : NULL [23:15:46.604] | : . ' .. .. .. .. .. ..$ rscript_startup : NULL [23:15:46.604] | : . ' .. .. .. .. .. ..$ rscript_sh : chr "auto" [23:15:46.604] | : . ' .. .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [23:15:46.604] | : . ' .. .. .. .. .. ..$ methods : logi TRUE [23:15:46.604] | : . ' .. .. .. .. .. ..$ socketOptions : chr "no-delay" [23:15:46.604] | : . ' .. .. .. .. .. ..$ useXDR : logi FALSE [23:15:46.604] | : . ' .. .. .. .. .. ..$ outfile : chr "/dev/null" [23:15:46.604] | : . ' .. .. .. .. .. ..$ renice : int NA [23:15:46.604] | : . ' .. .. .. .. .. ..$ rshcmd : NULL [23:15:46.604] | : . ' .. .. .. .. .. ..$ user : NULL [23:15:46.604] | : . ' .. .. .. .. .. ..$ revtunnel : logi NA [23:15:46.604] | : . ' .. .. .. .. .. ..$ rshlogfile : NULL [23:15:46.604] | : . ' .. .. .. .. .. ..$ rshopts : NULL [23:15:46.604] | : . ' .. .. .. .. .. ..$ rank : int 1 [23:15:46.604] | : . ' .. .. .. .. .. ..$ manual : logi FALSE [23:15:46.604] | : . ' .. .. .. .. .. ..$ dryrun : logi FALSE [23:15:46.604] | : . ' .. .. .. .. .. ..$ quiet : logi FALSE [23:15:46.604] | : . ' .. .. .. .. .. ..$ setup_strategy : chr "parallel" [23:15:46.604] | : . ' .. .. .. .. .. ..$ calls : logi FALSE [23:15:46.604] | : . ' .. .. .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [23:15:46.604] | : . ' .. .. .. ..- attr(*, "calls")=Dotted pair list of 16 [23:15:46.604] | : . ' .. .. .. .. ..$ : language future:::testme("tweak") [23:15:46.604] | : . ' .. .. .. .. ..$ : language source(file.path(path, "run.R")) [23:15:46.604] | : . ' .. .. .. .. ..$ : language withVisible(eval(ei, envir)) [23:15:46.604] | : . ' .. .. .. .. ..$ : language eval(ei, envir) [23:15:46.604] | : . ' .. .. .. .. ..$ : language eval(ei, envir) [23:15:46.604] | : . ' .. .. .. .. ..$ : language source(testme[["script"]], echo = TRUE) [23:15:46.604] | : . ' .. .. .. .. ..$ : language withVisible(eval(ei, envir)) [23:15:46.604] | : . ' .. .. .. .. ..$ : language eval(ei, envir) [23:15:46.604] | : . ' .. .. .. .. ..$ : language eval(ei, envir) [23:15:46.604] | : . ' .. .. .. .. ..$ : language local({ cl <- makeClusterPSOCK(1L) ... [23:15:46.604] | : . ' .. .. .. .. ..$ : language eval.parent(substitute(eval(quote(expr), envir))) [23:15:46.604] | : . ' .. .. .. .. ..$ : language eval(expr, p) [23:15:46.604] | : . ' .. .. .. .. ..$ : language eval(expr, p) [23:15:46.604] | : . ' .. .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [23:15:46.604] | : . ' .. .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [23:15:46.604] | : . ' .. .. .. .. ..$ : language makeClusterPSOCK(1L) [23:15:46.604] | : . ' .. .. .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [23:15:46.604] | : . ' .. .. ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [23:15:46.604] | : . ' ..- attr(*, "call")= language future::plan(future::cluster, workers = cl) [23:15:46.604] | : . ' ..- attr(*, "backend")=Classes 'ClusterFutureBackend', 'MultiprocessFutureBackend', 'FutureBackend', 'environment' [23:15:46.604] | : . ' .. ..- attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [23:15:46.604] | : . ' earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [23:15:46.604] | : . ' .. .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [23:15:46.604] | : . ' - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:46.685] | : . ' Not identical [23:15:46.685] | : . ' all.equal() for future ... [23:15:46.685] | : . ' , List of 2 [23:15:46.685] | : . ' , $ target :function (..., envir = parent.frame()) [23:15:46.685] | : . ' , ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:15:46.685] | : . ' , ..- attr(*, "init")= logi TRUE [23:15:46.685] | : . ' , ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:46.685] | : . ' , .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.685] | : . ' , ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.685] | : . ' , ..- attr(*, "call")= language plan(sequential) [23:15:46.685] | : . ' , $ current:function (..., workers = list(list(con = 4L, host = "localhost", rank = 0L, [23:15:46.685] | : . ' , session_info = list(process = list(pid = 25240L), r = list(platform = "x86_64-w64-mingw32", [23:15:46.685] | : . ' , arch = "x86_64", os = "mingw32", crt = "ucrt", system = "x86_64, mingw32", [23:15:46.685] | : . ' , status = "Under development (unstable)", major = "4", minor = "6.0", [23:15:46.685] | : . ' , year = "2025", month = "11", day = "15", `svn rev` = "89024", language = "R", [23:15:46.685] | : . ' , version.string = "R Under development (unstable) (2025-11-15 r89024 ucrt)", [23:15:46.685] | : . ' , nickname = "Unsuffered Consequences", os.type = "windows"), system = list( [23:15:46.685] | : . ' , sysname = "Windows", release = "Server x64", version = "build 20348", [23:15:46.685] | : . ' , nodename = "CRANWIN3", machine = "x86-64", login = "CRAN", user = "CRAN", [23:15:46.685] | : . ' , effective_user = "CRAN", udomain = "CRANWIN3"), l10n = list(MBCS = TRUE, [23:15:46.685] | : . ' , `UTF-8` = TRUE, `Latin-1` = FALSE, codepage = 65001L, system.codepage = 65001L), [23:15:46.685] | : . ' , extSoftVersion = c(zlib = "1.3.1", bzlib = "1.0.8, 13-Jul-2019", [23:15:46.685] | : . ' , xz = "5.8.1", libdeflate = "1.24", zstd = "1.5.7", PCRE = "10.46 2025-08-27", [23:15:46.685] | : . ' , ICU = "77.1", TRE = "TRE 0.8.0 R_fixes (BSD)", iconv = "win_iconv", [23:15:46.685] | : . ' , readline = "", BLAS = ""), pwd = "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests", [23:15:46.685] | : . ' , tempdir = "D:\\temp\\2025_11_16_23_10_16_9296\\RtmpmiDN8r", libs = c("D:/temp/2025_11_16_23_10_16_9296/RtmpOmYtQ8/RLIBS_10f20545821a2", [23:15:46.685] | : . ' , ..- attr(*, "class")= chr [1:5] "tweaked" "cluster" "multiprocess" "future" ... [23:15:46.685] | : . ' , ..- attr(*, "init")= chr "done" [23:15:46.685] | : . ' , ..- attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [23:15:46.685] | : . ' , earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [23:15:46.685] | : . ' , .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [23:15:46.685] | : . ' , ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [23:15:46.685] | : . ' , ..- attr(*, "tweaks")=List of 1 [23:15:46.685] | : . ' , .. ..$ workers:List of 1 [23:15:46.685] | : . ' , .. .. ..$ :List of 4 [23:15:46.685] | : . ' , .. .. .. ..$ con : 'sockconn' int 4 [23:15:46.685] | : . ' , .. .. .. .. ..- attr(*, "conn_id")= [23:15:46.685] | : . ' , .. .. .. ..$ host : chr "localhost" [23:15:46.685] | : . ' , .. .. .. .. ..- attr(*, "localhost")= logi TRUE [23:15:46.685] | : . ' , .. .. .. ..$ rank : int 0 [23:15:46.685] | : . ' , .. .. .. ..$ session_info:List of 9 [23:15:46.685] | : . ' , .. .. .. .. ..$ process :List of 1 [23:15:46.685] | : . ' , .. .. .. .. .. ..$ pid: int 25240 [23:15:46.685] | : . ' , .. .. .. .. ..$ r :List of 16 [23:15:46.685] | : . ' , .. .. .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [23:15:46.685] | : . ' , .. .. .. .. .. ..$ arch : chr "x86_64" [23:15:46.685] | : . ' , .. .. .. .. .. ..$ os : chr "mingw32" [23:15:46.685] | : . ' , .. .. .. .. .. ..$ crt : chr "ucrt" [23:15:46.685] | : . ' , .. .. .. .. .. ..$ system : chr "x86_64, mingw32" [23:15:46.685] | : . ' , .. .. .. .. .. ..$ status : chr "Under development (unstable)" [23:15:46.685] | : . ' , .. .. .. .. .. ..$ major : chr "4" [23:15:46.685] | : . ' , .. .. .. .. .. ..$ minor : chr "6.0" [23:15:46.685] | : . ' , .. .. .. .. .. ..$ year : chr "2025" [23:15:46.685] | : . ' , .. .. .. .. .. ..$ month : chr "11" [23:15:46.685] | : . ' , .. .. .. .. .. ..$ day : chr "15" [23:15:46.685] | : . ' , .. .. .. .. .. ..$ svn rev : chr "89024" [23:15:46.685] | : . ' , .. .. .. .. .. ..$ language : chr "R" [23:15:46.685] | : . ' , .. .. .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-11-15 r89024 ucrt)" [23:15:46.685] | : . ' , .. .. .. .. .. ..$ nickname : chr "Unsuffered Consequences" [23:15:46.685] | : . ' , .. .. .. .. .. ..$ os.type : chr "windows" [23:15:46.685] | : . ' , .. .. .. .. ..$ system :List of 9 [23:15:46.685] | : . ' , .. .. .. .. .. ..$ sysname : chr "Windows" [23:15:46.685] | : . ' , .. .. .. .. .. ..$ release : chr "Server x64" [23:15:46.685] | : . ' , .. .. .. .. .. ..$ version : chr "build 20348" [23:15:46.685] | : . ' , .. .. .. .. .. ..$ nodename : chr "CRANWIN3" [23:15:46.685] | : . ' , .. .. .. .. .. ..$ machine : chr "x86-64" [23:15:46.685] | : . ' , .. .. .. .. .. ..$ login : chr "CRAN" [23:15:46.685] | : . ' , .. .. .. .. .. ..$ user : chr "CRAN" [23:15:46.685] | : . ' , .. .. .. .. .. ..$ effective_user: chr "CRAN" [23:15:46.685] | : . ' , .. .. .. .. .. ..$ udomain : chr "CRANWIN3" [23:15:46.685] | : . ' , .. .. .. .. ..$ l10n :List of 5 [23:15:46.685] | : . ' , .. .. .. .. .. ..$ MBCS : logi TRUE [23:15:46.685] | : . ' , .. .. .. .. .. ..$ UTF-8 : logi TRUE [23:15:46.685] | : . ' , .. .. .. .. .. ..$ Latin-1 : logi FALSE [23:15:46.685] | : . ' , .. .. .. .. .. ..$ codepage : int 65001 [23:15:46.685] | : . ' , .. .. .. .. .. ..$ system.codepage: int 65001 [23:15:46.685] | : . ' , .. .. .. .. ..$ extSoftVersion: Named chr [1:11] "1.3.1" "1.0.8, 13-Jul-2019" "5.8.1" "1.24" ... [23:15:46.685] | : . ' , .. .. .. .. .. ..- attr(*, "names")= chr [1:11] "zlib" "bzlib" "xz" "libdeflate" ... [23:15:46.685] | : . ' , .. .. .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [23:15:46.685] | : . ' , .. .. .. .. ..$ tempdir : chr "D:\\temp\\2025_11_16_23_10_16_9296\\RtmpmiDN8r" [23:15:46.685] | : . ' , .. .. .. .. ..$ libs : chr [1:2] "D:/temp/2025_11_16_23_10_16_9296/RtmpOmYtQ8/RLIBS_10f20545821a2" "D:/RCompile/recent/R/library" [23:15:46.685] | : . ' , .. .. .. .. ..$ pkgs : NULL [23:15:46.685] | : . ' , .. .. .. ..- attr(*, "options")=List of 35 [23:15:46.685] | : . ' , .. .. .. .. ..$ worker : chr "localhost" [23:15:46.685] | : . ' , .. .. .. .. .. ..- attr(*, "localhost")= logi TRUE [23:15:46.685] | : . ' , .. .. .. .. ..$ master : chr "localhost" [23:15:46.685] | : . ' , .. .. .. .. ..$ port : int 23755 [23:15:46.685] | : . ' , .. .. .. .. ..$ connectTimeout : num 120 [23:15:46.685] | : . ' , .. .. .. .. ..$ timeout : num 120 [23:15:46.685] | : . ' , .. .. .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [23:15:46.685] | : . ' , .. .. .. .. ..$ homogeneous : logi TRUE [23:15:46.685] | : . ' , .. .. .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:48988:CRANWIN3:CRAN"| __truncated__ [23:15:46.685] | : . ' , .. .. .. .. ..$ rscript_envs : NULL [23:15:46.685] | : . ' , .. .. .. .. ..$ rscript_libs : NULL [23:15:46.685] | : . ' , .. .. .. .. ..$ rscript_startup : NULL [23:15:46.685] | : . ' , .. .. .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [23:15:46.685] | : . ' , .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [23:15:46.685] | : . ' , .. .. .. .. ..$ methods : logi TRUE [23:15:46.685] | : . ' , .. .. .. .. ..$ socketOptions : chr "no-delay" [23:15:46.685] | : . ' , .. .. .. .. ..$ useXDR : logi FALSE [23:15:46.685] | : . ' , .. .. .. .. ..$ outfile : chr "/dev/null" [23:15:46.685] | : . ' , .. .. .. .. ..$ renice : int NA [23:15:46.685] | : . ' , .. .. .. .. ..$ rshcmd : NULL [23:15:46.685] | : . ' , .. .. .. .. ..$ user : chr(0) [23:15:46.685] | : . ' , .. .. .. .. ..$ revtunnel : logi FALSE [23:15:46.685] | : . ' , .. .. .. .. ..$ rshlogfile : NULL [23:15:46.685] | : . ' , .. .. .. .. ..$ rshopts : chr(0) [23:15:46.685] | : . ' , .. .. .. .. ..$ rank : int 0 [23:15:46.685] | : . ' , .. .. .. .. ..$ manual : logi FALSE [23:15:46.685] | : . ' , .. .. .. .. ..$ dryrun : logi FALSE [23:15:46.685] | : . ' , .. .. .. .. ..$ quiet : logi FALSE [23:15:46.685] | : . ' , .. .. .. .. ..$ setup_strategy : chr "parallel" [23:15:46.685] | : . ' , .. .. .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [23:15:46.685] | : . ' , .. .. .. .. ..$ rshcmd_label : NULL [23:15:46.685] | : . ' , .. .. .. .. ..$ rsh_call : NULL [23:15:46.685] | : . ' , .. .. .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [23:15:46.685] | : . ' , .. .. .. .. ..$ localMachine : logi TRUE [23:15:46.685] | : . ' , .. .. .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [23:15:46.685] | : . ' , master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [23:15:46.685] | : . ' , 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [23:15:46.685] | : . ' , 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [23:15:46.685] | : . ' , rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [23:15:46.685] | : . ' , "cmd", "sh", "none"), default_packages = c("datasets", "utils", [23:15:46.685] | : . ' , "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [23:15:46.685] | : . ' , socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [23:15:46.685] | : . ' , "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [23:15:46.685] | : . ' , FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [23:15:46.685] | : . ' , NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [23:15:46.685] | : . ' , NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [23:15:46.685] | : . ' , setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [23:15:46.685] | : . ' , "parallel"), calls = getOption2("parallelly.makeNodePSOCK.calls", [23:15:46.685] | : . ' , FALSE), action = c("launch", "options"), verbose = FALSE) [23:15:46.685] | : . ' , .. .. .. .. ..$ arguments :List of 29 [23:15:46.685] | : . ' , .. .. .. .. .. ..$ worker : chr "localhost" [23:15:46.685] | : . ' , .. .. .. .. .. ..$ master : NULL [23:15:46.685] | : . ' , .. .. .. .. .. ..$ port : int 23755 [23:15:46.685] | : . ' , .. .. .. .. .. ..$ connectTimeout : num 120 [23:15:46.685] | : . ' , .. .. .. .. .. ..$ timeout : num 120 [23:15:46.685] | : . ' , .. .. .. .. .. ..$ rscript : NULL [23:15:46.685] | : . ' , .. .. .. .. .. ..$ homogeneous : NULL [23:15:46.685] | : . ' , .. .. .. .. .. ..$ rscript_args : NULL [23:15:46.685] | : . ' , .. .. .. .. .. ..$ rscript_envs : NULL [23:15:46.685] | : . ' , .. .. .. .. .. ..$ rscript_libs : NULL [23:15:46.685] | : . ' , .. .. .. .. .. ..$ rscript_startup : NULL [23:15:46.685] | : . ' , .. .. .. .. .. ..$ rscript_sh : chr "auto" [23:15:46.685] | : . ' , .. .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [23:15:46.685] | : . ' , .. .. .. .. .. ..$ methods : logi TRUE [23:15:46.685] | : . ' , .. .. .. .. .. ..$ socketOptions : chr "no-delay" [23:15:46.685] | : . ' , .. .. .. .. .. ..$ useXDR : logi FALSE [23:15:46.685] | : . ' , .. .. .. .. .. ..$ outfile : chr "/dev/null" [23:15:46.685] | : . ' , .. .. .. .. .. ..$ renice : int NA [23:15:46.685] | : . ' , .. .. .. .. .. ..$ rshcmd : NULL [23:15:46.685] | : . ' , .. .. .. .. .. ..$ user : NULL [23:15:46.685] | : . ' , .. .. .. .. .. ..$ revtunnel : logi NA [23:15:46.685] | : . ' , .. .. .. .. .. ..$ rshlogfile : NULL [23:15:46.685] | : . ' , .. .. .. .. .. ..$ rshopts : NULL [23:15:46.685] | : . ' , .. .. .. .. .. ..$ rank : int 1 [23:15:46.685] | : . ' , .. .. .. .. .. ..$ manual : logi FALSE [23:15:46.685] | : . ' , .. .. .. .. .. ..$ dryrun : logi FALSE [23:15:46.685] | : . ' , .. .. .. .. .. ..$ quiet : logi FALSE [23:15:46.685] | : . ' , .. .. .. .. .. ..$ setup_strategy : chr "parallel" [23:15:46.685] | : . ' , .. .. .. .. .. ..$ calls : logi FALSE [23:15:46.685] | : . ' , .. .. .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [23:15:46.685] | : . ' , .. .. .. ..- attr(*, "calls")=Dotted pair list of 16 [23:15:46.685] | : . ' , .. .. .. .. ..$ : language future:::testme("tweak") [23:15:46.685] | : . ' , .. .. .. .. ..$ : language source(file.path(path, "run.R")) [23:15:46.685] | : . ' , .. .. .. .. ..$ : language withVisible(eval(ei, envir)) [23:15:46.685] | : . ' , .. .. .. .. ..$ : language eval(ei, envir) [23:15:46.685] | : . ' , .. .. .. .. ..$ : language eval(ei, envir) [23:15:46.685] | : . ' , .. .. .. .. ..$ : language source(testme[["script"]], echo = TRUE) [23:15:46.685] | : . ' , .. .. .. .. ..$ : language withVisible(eval(ei, envir)) [23:15:46.685] | : . ' , .. .. .. .. ..$ : language eval(ei, envir) [23:15:46.685] | : . ' , .. .. .. .. ..$ : language eval(ei, envir) [23:15:46.685] | : . ' , .. .. .. .. ..$ : language local({ cl <- makeClusterPSOCK(1L) ... [23:15:46.685] | : . ' , .. .. .. .. ..$ : language eval.parent(substitute(eval(quote(expr), envir))) [23:15:46.685] | : . ' , .. .. .. .. ..$ : language eval(expr, p) [23:15:46.685] | : . ' , .. .. .. .. ..$ : language eval(expr, p) [23:15:46.685] | : . ' , .. .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [23:15:46.685] | : . ' , .. .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [23:15:46.685] | : . ' , .. .. .. .. ..$ : language makeClusterPSOCK(1L) [23:15:46.685] | : . ' , .. .. .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [23:15:46.685] | : . ' , .. .. ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [23:15:46.685] | : . ' , ..- attr(*, "call")= language future::plan(future::cluster, workers = cl) [23:15:46.685] | : . ' , ..- attr(*, "backend")=Classes 'ClusterFutureBackend', 'MultiprocessFutureBackend', 'FutureBackend', 'environment' [23:15:46.685] | : . ' , .. ..- attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [23:15:46.685] | : . ' , earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [23:15:46.685] | : . ' , .. .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [23:15:46.780] | : . ' , Formals differ [23:15:46.780] | : . ' all.equal() for future ... done [23:15:46.781] | : . ' Future strategies differ at level 1 [23:15:46.781] | : . all.equal() for FutureStrategyList ... done [23:15:46.781] | : . plan(): Setting new future backend stack: [23:15:46.781] | : . List of future strategies: [23:15:46.781] | : . 1. sequential: [23:15:46.781] | : . - args: function (..., envir = parent.frame(), workers = "") [23:15:46.781] | : . - tweaked: FALSE [23:15:46.781] | : . - call: plan(sequential) [23:15:46.782] | : . List of 1 [23:15:46.782] | : . $ :function (..., envir = parent.frame()) [23:15:46.782] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:15:46.782] | : . ..- attr(*, "init")= logi TRUE [23:15:46.782] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:46.782] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.782] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.782] | : . ..- attr(*, "call")= language plan(sequential) [23:15:46.782] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:46.788] | : . plan(): plan_cleanup(<'tweaked', 'cluster', 'multiprocess', 'future', 'function'>, cleanup = NA) ... [23:15:46.788] | : . ' plan("next", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:15:46.788] | : . ' , Getting current ("next") strategy: 'FutureStrategy', 'tweaked', 'cluster', 'multiprocess', 'future', 'function' [23:15:46.789] | : . ' plan("next", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:15:46.789] | : . ' stopWorkers() for ClusterFutureBackend ... [23:15:46.789] | : . ' , Interrupt active futures ... [23:15:46.791] | : . ' , ; Number of futures: 0 [23:15:46.791] | : . ' , Interrupt active futures ... done [23:15:46.792] | : . ' , Clear future registry ... [23:15:46.793] | : . ' , Clear future registry ... done [23:15:46.793] | : . ' , Stop cluster workers ... [23:15:46.793] | : . ' , ; Stopping existing cluster ... [23:15:46.793] | : . ' , ; ` No pre-existing cluster. Skipping [23:15:46.794] | : . ' , ; Stopping existing cluster ... done [23:15:46.794] | : . ' , Stop cluster workers ... done [23:15:46.795] | : . ' stopWorkers() for ClusterFutureBackend ... done [23:15:46.795] | : . ' Legacy shutdown of cluster workers ... [23:15:46.795] | : . ' , Stopping existing cluster ... [23:15:46.795] | : . ' , ; No pre-existing cluster. Skipping [23:15:46.796] | : . ' , Stopping existing cluster ... done [23:15:46.796] | : . ' Legacy shutdown of cluster workers ... done [23:15:46.796] | : . plan(): plan_cleanup(<'tweaked', 'cluster', 'multiprocess', 'future', 'function'>, cleanup = NA) ... done [23:15:46.797] | : . plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... [23:15:46.797] | : . ' function (..., envir = parent.frame()) [23:15:46.797] | : . ' - attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:15:46.797] | : . ' - attr(*, "init")= logi TRUE [23:15:46.797] | : . ' - attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:46.797] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.797] | : . ' - attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.797] | : . ' - attr(*, "call")= language plan(sequential) [23:15:46.801] | : . ' init: TRUE [23:15:46.802] | : . ' makeFutureBackend() ... [23:15:46.802] | : . ' , Backend function: <'NULL'> [23:15:46.802] | : . ' , Evaluator tweak arguments: [n=0] [23:15:46.803] | : . ' , list() [23:15:46.803] | : . ' , Evaluator formal arguments: [n=0] [23:15:46.804] | : . ' , NULL [23:15:46.804] | : . ' , Arguments passed to the future-backend factory: [n=0] [23:15:46.804] | : . ' , list() [23:15:46.805] | : . ' , Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [23:15:46.805] | : . ' makeFutureBackend() ... done [23:15:46.806] | : . plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... done [23:15:46.806] | : . nbrOfWorkers(NULL) ... [23:15:46.806] | : . ' List of 4 [23:15:46.806] | : . ' $ : language plan_set(strategy, skip = .skip, cleanup = .cleanup, init = .init, debug = debug) [23:15:46.806] | : . ' $ : language with_assert({ nbrOfWorkers <- nbrOfWorkers() ... [23:15:46.806] | : . ' $ : language nbrOfWorkers() [23:15:46.806] | : . ' $ : language nbrOfWorkers.NULL() [23:15:46.810] | : . ' plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:15:46.810] | : . ' plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:15:46.810] | : . ' Number of workers: 1 [23:15:46.810] | : . nbrOfWorkers(NULL) ... done [23:15:46.811] | : . plan(): nbrOfWorkers() = 1 [23:15:46.811] | : plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... done [23:15:46.811] | plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:15:46.812] plan(<'name'>, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done > message("*** plan() - tweak without introducting package dependencies ... DONE") *** plan() - tweak without introducting package dependencies ... DONE > message("*** y %<-% { expr } %tweak% tweaks ...") *** y %<-% { expr } %tweak% tweaks ... > plan(sequential) [23:15:46.813] plan(<'name'>, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:15:46.813] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... [23:15:46.813] | : all.equal() for FutureStrategyList ... [23:15:46.814] | : . New stack: [23:15:46.814] | : . List of 1 [23:15:46.814] | : . $ :function (..., envir = parent.frame()) [23:15:46.814] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:15:46.814] | : . ..- attr(*, "init")= logi TRUE [23:15:46.814] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:46.814] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.814] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.814] | : . ..- attr(*, "call")= language plan(sequential) [23:15:46.814] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:46.819] | : . Old stack: [23:15:46.820] | : . List of 1 [23:15:46.820] | : . $ :function (..., envir = parent.frame()) [23:15:46.820] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:15:46.820] | : . ..- attr(*, "init")= chr "done" [23:15:46.820] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:46.820] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.820] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.820] | : . ..- attr(*, "call")= language plan(sequential) [23:15:46.820] | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:15:46.820] | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:46.820] | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.820] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:46.826] | : . Not identical [23:15:46.827] | : . all.equal() for future ... [23:15:46.827] | : . ' List of 2 [23:15:46.827] | : . ' $ target :function (..., envir = parent.frame()) [23:15:46.827] | : . ' ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:15:46.827] | : . ' ..- attr(*, "init")= logi TRUE [23:15:46.827] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:46.827] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.827] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.827] | : . ' ..- attr(*, "call")= language plan(sequential) [23:15:46.827] | : . ' $ current:function (..., envir = parent.frame()) [23:15:46.827] | : . ' ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:15:46.827] | : . ' ..- attr(*, "init")= chr "done" [23:15:46.827] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:46.827] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.827] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.827] | : . ' ..- attr(*, "call")= language plan(sequential) [23:15:46.827] | : . ' ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:15:46.827] | : . ' .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:46.827] | : . ' .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.838] | : . all.equal() for future ... done [23:15:46.838] | : all.equal() for FutureStrategyList ... done [23:15:46.839] | : plan(): Skip setting new future backend stack because it is the same as the current one: [23:15:46.839] | : List of future strategies: [23:15:46.839] | : 1. sequential: [23:15:46.839] | : - args: function (..., envir = parent.frame(), workers = "") [23:15:46.839] | : - tweaked: FALSE [23:15:46.839] | : - call: plan(sequential) [23:15:46.840] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... done [23:15:46.840] plan(<'name'>, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done > a <- 0 > x %<-% { + a <- 1 + a + } [23:15:46.842] future(..., label = NULL) ... [23:15:46.842] | lazy: FALSE [23:15:46.843] | stdout: TRUE [23:15:46.843] | conditions: [n=1] 'condition' [23:15:46.843] | gc: FALSE [23:15:46.844] | earlySignal: FALSE [23:15:46.845] | getGlobalsAndPackages() ... [23:15:46.845] | : Searching for globals ... [23:15:46.876] | : . globals found: [2] '{', '<-' [23:15:46.876] | : Searching for globals ... done [23:15:46.877] | : Resolving globals: FALSE [23:15:46.877] | : Search for packages associated with the globals ... [23:15:46.878] | : . Packages associated with globals: [1] 'base' [23:15:46.878] | : . Packages: [1] 'base' [23:15:46.879] | : Search for packages associated with the globals ... done [23:15:46.879] | : Packages after dropping 'base': [0] [23:15:46.879] | : globals: [0] [23:15:46.879] | : packages: [0] [23:15:46.880] | getGlobalsAndPackages() ... done [23:15:46.881] | run() for 'Future' () ... [23:15:46.881] | : state: 'created' [23:15:46.882] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:15:46.882] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:15:46.882] | : Using SequentialFutureBackend ... [23:15:46.883] | : . Number of futures since start: 0 (0 created, 0 launched, 0 finished) [23:15:46.883] | : . Launching futures ... [23:15:46.884] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [23:15:46.884] | : . ' , getFutureData() ... [23:15:46.884] | : . ' , ; getFutureCore() ... [23:15:46.885] | : . ' , ; ` Packages needed by the future expression (n = 0): [23:15:46.885] | : . ' , ; getFutureCore() ... done [23:15:46.885] | : . ' , ; getFutureCapture() ... [23:15:46.886] | : . ' , ; getFutureCapture() ... done [23:15:46.886] | : . ' , ; getFutureContext() ... [23:15:46.886] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:15:46.887] | : . ' , ; ` | Getting stack without first backend: [n=0] [23:15:46.887] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:15:46.887] | : . ' , ; ` Packages needed by future backend (n = 0): [23:15:46.887] | : . ' , ; getFutureContext() ... done [23:15:46.888] | : . ' , getFutureData() ... done [23:15:46.893] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:15:46.893] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [23:15:46.894] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:15:46.894] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:15:46.895] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:15:46.895] | : . ' , ; ` all.equal() for FutureStrategyList ... [23:15:46.895] | : . ' , ; ` | New stack: [23:15:46.896] | : . ' , ; ` | List of 1 [23:15:46.896] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:15:46.896] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:15:46.896] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [23:15:46.896] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:46.896] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.896] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.896] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:15:46.896] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:46.901] | : . ' , ; ` | Old stack: [23:15:46.901] | : . ' , ; ` | List of 1 [23:15:46.901] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:15:46.901] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:15:46.901] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [23:15:46.901] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:46.901] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.901] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.901] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [23:15:46.901] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:15:46.901] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:46.901] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.901] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:46.907] | : . ' , ; ` | Not identical [23:15:46.908] | : . ' , ; ` | all.equal() for future ... [23:15:46.908] | : . ' , ; ` | : List of 2 [23:15:46.908] | : . ' , ; ` | : $ target :function (..., envir = parent.frame()) [23:15:46.908] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:15:46.908] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [23:15:46.908] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:46.908] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.908] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.908] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:15:46.908] | : . ' , ; ` | : $ current:function (..., envir = parent.frame()) [23:15:46.908] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:15:46.908] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:15:46.908] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:46.908] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.908] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.908] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:15:46.908] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:15:46.908] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:46.908] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.919] | : . ' , ; ` | all.equal() for future ... done [23:15:46.919] | : . ' , ; ` all.equal() for FutureStrategyList ... done [23:15:46.919] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [23:15:46.919] | : . ' , ; ` List of future strategies: [23:15:46.919] | : . ' , ; ` 1. sequential: [23:15:46.919] | : . ' , ; ` - args: function (..., envir = parent.frame(), workers = "") [23:15:46.919] | : . ' , ; ` - tweaked: FALSE [23:15:46.919] | : . ' , ; ` - call: plan(sequential) [23:15:46.920] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:15:46.921] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:15:46.926] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:15:46.926] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:15:46.927] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:15:46.927] | : . ' , ; ` | all.equal() for FutureStrategyList ... [23:15:46.927] | : . ' , ; ` | : New stack: [23:15:46.927] | : . ' , ; ` | : List of 1 [23:15:46.927] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:15:46.927] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:15:46.927] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:15:46.927] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:46.927] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.927] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.927] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:15:46.927] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:15:46.927] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:46.927] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.927] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:46.934] | : . ' , ; ` | : Old stack: [23:15:46.934] | : . ' , ; ` | : List of 1 [23:15:46.934] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:15:46.934] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:15:46.934] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:15:46.934] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:46.934] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.934] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.934] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [23:15:46.934] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:15:46.934] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:46.934] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.934] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:46.940] | : . ' , ; ` | : Identical [23:15:46.941] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [23:15:46.941] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [23:15:46.941] | : . ' , ; ` | List of future strategies: [23:15:46.941] | : . ' , ; ` | 1. sequential: [23:15:46.941] | : . ' , ; ` | - args: function (..., envir = parent.frame(), workers = "") [23:15:46.941] | : . ' , ; ` | - tweaked: FALSE [23:15:46.941] | : . ' , ; ` | - call: plan(sequential) [23:15:46.942] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:15:46.942] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:15:46.943] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:15:46.948] | : . ' , SequentialFuture started (and completed) [23:15:46.949] | : . ' , signalConditions() ... [23:15:46.950] | : . ' , ; include = 'immediateCondition' [23:15:46.950] | : . ' , ; exclude = [23:15:46.950] | : . ' , ; resignal = FALSE [23:15:46.951] | : . ' , ; Number of conditions: 6 [23:15:46.951] | : . ' , ; int 6 [23:15:46.952] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:15:46.952] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:15:46.952] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:15:46.953] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:15:46.953] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:15:46.953] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:15:46.954] | : . ' , signalConditions() ... done [23:15:46.954] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [23:15:46.954] | : . Launching futures ... done [23:15:46.955] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [23:15:46.955] | : Using SequentialFutureBackend ... done [23:15:46.955] | run() for 'Future' () ... done [23:15:46.955] future(..., label = NULL) ... done > print(x) [23:15:46.956] value() for SequentialFuture () ... [23:15:46.957] | signalConditions() ... [23:15:46.957] | : include = 'immediateCondition' [23:15:46.957] | : exclude = [23:15:46.957] | : resignal = FALSE [23:15:46.958] | : Number of conditions: 6 [23:15:46.958] | : int 6 [23:15:46.959] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:15:46.959] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:15:46.960] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:15:46.960] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:15:46.960] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:15:46.961] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:15:46.961] | signalConditions() ... done [23:15:46.961] | relay stdout ... [23:15:46.962] | relay stdout ... done [23:15:46.962] | check for misuse ... [23:15:46.962] | check for misuse ... done [23:15:46.963] | relay conditions ... [23:15:46.963] | : Future state: 'finished' [23:15:46.963] | : signalConditions() ... [23:15:46.964] | : . include = 'condition' [23:15:46.964] | : . exclude = 'immediateCondition' [23:15:46.964] | : . resignal = TRUE [23:15:46.965] | : . Number of conditions: 6 [23:15:46.965] | : . int 6 [23:15:46.966] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:15:46.966] | : . Condition #1: 'simpleMessage', 'message', 'condition' [23:15:46.890] | : . ' , attachPackages() ... [23:15:46.967] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:15:46.967] | : . Condition #2: 'simpleMessage', 'message', 'condition' [23:15:46.891] | : . ' , ; packages: [n=1] 'future' [23:15:46.968] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:15:46.968] | : . Condition #3: 'simpleMessage', 'message', 'condition' [23:15:46.891] | : . ' , attachPackages() ... done [23:15:46.968] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:15:46.969] | : . Condition #4: 'simpleMessage', 'message', 'condition' [23:15:46.891] | : . ' , attachPackages() ... [23:15:46.969] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:15:46.970] | : . Condition #5: 'simpleMessage', 'message', 'condition' [23:15:46.892] | : . ' , ; packages: [n=0] [23:15:46.970] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:15:46.970] | : . Condition #6: 'simpleMessage', 'message', 'condition' [23:15:46.892] | : . ' , attachPackages() ... done [23:15:46.971] | : signalConditions() ... done [23:15:46.971] | relay conditions ... done [23:15:46.971] value() for SequentialFuture () ... done [1] 1 > stopifnot(a == 0, x == 1) > plan(sequential, abc = FALSE) [23:15:46.972] plan(<'name'>, .skip = FALSE, .cleanup = NA, .init = TRUE) ... Warning: Detected 1 unknown future arguments: 'abc' [23:15:46.973] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... [23:15:46.973] | : all.equal() for FutureStrategyList ... [23:15:46.973] | : . New stack: [23:15:46.974] | : . List of 1 [23:15:46.974] | : . $ :function (..., abc = FALSE, envir = parent.frame()) [23:15:46.974] | : . ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [23:15:46.974] | : . ..- attr(*, "init")= logi TRUE [23:15:46.974] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:46.974] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.974] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.974] | : . ..- attr(*, "tweaks")=List of 1 [23:15:46.974] | : . .. ..$ abc: logi FALSE [23:15:46.974] | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [23:15:46.974] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:46.979] | : . Old stack: [23:15:46.980] | : . List of 1 [23:15:46.980] | : . $ :function (..., envir = parent.frame()) [23:15:46.980] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:15:46.980] | : . ..- attr(*, "init")= chr "done" [23:15:46.980] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:46.980] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.980] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.980] | : . ..- attr(*, "call")= language plan(sequential) [23:15:46.980] | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:15:46.980] | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:46.980] | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.980] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:46.992] | : . Not identical [23:15:46.992] | : . all.equal() for future ... [23:15:46.992] | : . ' List of 2 [23:15:46.992] | : . ' $ target :function (..., abc = FALSE, envir = parent.frame()) [23:15:46.992] | : . ' ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [23:15:46.992] | : . ' ..- attr(*, "init")= logi TRUE [23:15:46.992] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:46.992] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.992] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.992] | : . ' ..- attr(*, "tweaks")=List of 1 [23:15:46.992] | : . ' .. ..$ abc: logi FALSE [23:15:46.992] | : . ' ..- attr(*, "call")= language plan(sequential, abc = FALSE) [23:15:46.992] | : . ' $ current:function (..., envir = parent.frame()) [23:15:46.992] | : . ' ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:15:46.992] | : . ' ..- attr(*, "init")= chr "done" [23:15:46.992] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:46.992] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.992] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:46.992] | : . ' ..- attr(*, "call")= language plan(sequential) [23:15:46.992] | : . ' ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:15:46.992] | : . ' .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:46.992] | : . ' .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.006] | : . ' Formals differ [23:15:47.006] | : . all.equal() for future ... done [23:15:47.007] | : . Future strategies differ at level 1 [23:15:47.007] | : all.equal() for FutureStrategyList ... done [23:15:47.007] | : plan(): Setting new future backend stack: [23:15:47.008] | : List of future strategies: [23:15:47.008] | : 1. sequential: [23:15:47.008] | : - args: function (..., abc = FALSE, envir = parent.frame(), workers = "") [23:15:47.008] | : - tweaked: TRUE [23:15:47.008] | : - call: plan(sequential, abc = FALSE) [23:15:47.009] | : List of 1 [23:15:47.009] | : $ :function (..., abc = FALSE, envir = parent.frame()) [23:15:47.009] | : ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [23:15:47.009] | : ..- attr(*, "init")= logi TRUE [23:15:47.009] | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.009] | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.009] | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.009] | : ..- attr(*, "tweaks")=List of 1 [23:15:47.009] | : .. ..$ abc: logi FALSE [23:15:47.009] | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [23:15:47.009] | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:47.016] | : plan(): plan_cleanup(<'sequential', 'uniprocess', 'future', 'function'>, cleanup = NA) ... [23:15:47.016] | : . plan("next", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:15:47.016] | : . ' Getting current ("next") strategy: 'FutureStrategy', 'sequential', 'uniprocess', 'future', 'function' [23:15:47.017] | : . plan("next", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:15:47.017] | : . Legacy shutdown of cluster workers ... [23:15:47.017] | : . ' Stopping existing cluster ... [23:15:47.018] | : . ' , No pre-existing cluster. Skipping [23:15:47.018] | : . ' Stopping existing cluster ... done [23:15:47.018] | : . Legacy shutdown of cluster workers ... done [23:15:47.019] | : plan(): plan_cleanup(<'sequential', 'uniprocess', 'future', 'function'>, cleanup = NA) ... done [23:15:47.019] | : plan(): plan_init() of 'tweaked', 'sequential', 'uniprocess', 'future', 'function' ... [23:15:47.020] | : . function (..., abc = FALSE, envir = parent.frame()) [23:15:47.020] | : . - attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [23:15:47.020] | : . - attr(*, "init")= logi TRUE [23:15:47.020] | : . - attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.020] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.020] | : . - attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.020] | : . - attr(*, "tweaks")=List of 1 [23:15:47.020] | : . ..$ abc: logi FALSE [23:15:47.020] | : . - attr(*, "call")= language plan(sequential, abc = FALSE) [23:15:47.025] | : . init: TRUE [23:15:47.026] | : . makeFutureBackend() ... [23:15:47.026] | : . ' Backend function: <'NULL'> [23:15:47.026] | : . ' Evaluator tweak arguments: [n=1] [23:15:47.026] | : . ' List of 1 [23:15:47.026] | : . ' $ abc: logi FALSE [23:15:47.028] | : . ' Evaluator formal arguments: [n=1] [23:15:47.028] | : . ' Dotted pair list of 1 [23:15:47.028] | : . ' $ abc: logi FALSE [23:15:47.029] | : . ' Arguments passed to the future-backend factory: [n=1] [23:15:47.030] | : . ' List of 1 [23:15:47.030] | : . ' $ abc: logi FALSE [23:15:47.031] | : . ' Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [23:15:47.031] | : . makeFutureBackend() ... done [23:15:47.032] | : plan(): plan_init() of 'tweaked', 'sequential', 'uniprocess', 'future', 'function' ... done [23:15:47.032] | : nbrOfWorkers(NULL) ... [23:15:47.032] | : . List of 4 [23:15:47.032] | : . $ : language plan_set(newStack, skip = .skip, cleanup = .cleanup, init = .init, debug = debug) [23:15:47.032] | : . $ : language with_assert({ nbrOfWorkers <- nbrOfWorkers() ... [23:15:47.032] | : . $ : language nbrOfWorkers() [23:15:47.032] | : . $ : language nbrOfWorkers.NULL() [23:15:47.036] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:15:47.036] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:15:47.036] | : . Number of workers: 1 [23:15:47.036] | : nbrOfWorkers(NULL) ... done [23:15:47.037] | : plan(): nbrOfWorkers() = 1 [23:15:47.037] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... done [23:15:47.037] plan(<'name'>, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done > a <- 0 > x %<-% { + a <- 1 + a + } [23:15:47.038] future(..., label = NULL) ... [23:15:47.038] | lazy: FALSE [23:15:47.039] | stdout: TRUE [23:15:47.039] | conditions: [n=1] 'condition' [23:15:47.039] | gc: FALSE [23:15:47.040] | earlySignal: FALSE [23:15:47.040] | getGlobalsAndPackages() ... [23:15:47.040] | : Searching for globals ... [23:15:47.054] | : . globals found: [2] '{', '<-' [23:15:47.055] | : Searching for globals ... done [23:15:47.055] | : Resolving globals: FALSE [23:15:47.056] | : Search for packages associated with the globals ... [23:15:47.056] | : . Packages associated with globals: [1] 'base' [23:15:47.056] | : . Packages: [1] 'base' [23:15:47.057] | : Search for packages associated with the globals ... done [23:15:47.057] | : Packages after dropping 'base': [0] [23:15:47.057] | : globals: [0] [23:15:47.058] | : packages: [0] [23:15:47.058] | getGlobalsAndPackages() ... done [23:15:47.058] | run() for 'Future' () ... [23:15:47.059] | : state: 'created' [23:15:47.059] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:15:47.059] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:15:47.060] | : Using SequentialFutureBackend ... [23:15:47.060] | : . Number of futures since start: 0 (0 created, 0 launched, 0 finished) [23:15:47.060] | : . Launching futures ... [23:15:47.061] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [23:15:47.061] | : . ' , getFutureData() ... [23:15:47.061] | : . ' , ; getFutureCore() ... [23:15:47.061] | : . ' , ; ` Packages needed by the future expression (n = 0): [23:15:47.062] | : . ' , ; getFutureCore() ... done [23:15:47.062] | : . ' , ; getFutureCapture() ... [23:15:47.062] | : . ' , ; getFutureCapture() ... done [23:15:47.063] | : . ' , ; getFutureContext() ... [23:15:47.063] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:15:47.063] | : . ' , ; ` | Getting stack without first backend: [n=0] [23:15:47.064] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:15:47.064] | : . ' , ; ` Packages needed by future backend (n = 0): [23:15:47.064] | : . ' , ; getFutureContext() ... done [23:15:47.064] | : . ' , getFutureData() ... done [23:15:47.068] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:15:47.068] | : . ' , ; Getting full stack: [n=1] 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [23:15:47.068] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:15:47.069] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:15:47.069] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:15:47.069] | : . ' , ; ` all.equal() for FutureStrategyList ... [23:15:47.070] | : . ' , ; ` | New stack: [23:15:47.070] | : . ' , ; ` | List of 1 [23:15:47.070] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:15:47.070] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:15:47.070] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [23:15:47.070] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.070] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.070] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.070] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:15:47.070] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:47.075] | : . ' , ; ` | Old stack: [23:15:47.076] | : . ' , ; ` | List of 1 [23:15:47.076] | : . ' , ; ` | $ :function (..., abc = FALSE, envir = parent.frame()) [23:15:47.076] | : . ' , ; ` | ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [23:15:47.076] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [23:15:47.076] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.076] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.076] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.076] | : . ' , ; ` | ..- attr(*, "tweaks")=List of 1 [23:15:47.076] | : . ' , ; ` | .. ..$ abc: logi FALSE [23:15:47.076] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential, abc = FALSE) [23:15:47.076] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:15:47.076] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.076] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.076] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:47.083] | : . ' , ; ` | Not identical [23:15:47.083] | : . ' , ; ` | all.equal() for future ... [23:15:47.084] | : . ' , ; ` | : List of 2 [23:15:47.084] | : . ' , ; ` | : $ target :function (..., envir = parent.frame()) [23:15:47.084] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:15:47.084] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [23:15:47.084] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.084] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.084] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.084] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:15:47.084] | : . ' , ; ` | : $ current:function (..., abc = FALSE, envir = parent.frame()) [23:15:47.084] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [23:15:47.084] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:15:47.084] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.084] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.084] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.084] | : . ' , ; ` | : ..- attr(*, "tweaks")=List of 1 [23:15:47.084] | : . ' , ; ` | : .. ..$ abc: logi FALSE [23:15:47.084] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [23:15:47.084] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:15:47.084] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.084] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.095] | : . ' , ; ` | : Formals differ [23:15:47.095] | : . ' , ; ` | all.equal() for future ... done [23:15:47.095] | : . ' , ; ` | Future strategies differ at level 1 [23:15:47.096] | : . ' , ; ` all.equal() for FutureStrategyList ... done [23:15:47.096] | : . ' , ; ` plan(): Setting new future backend stack: [23:15:47.096] | : . ' , ; ` List of future strategies: [23:15:47.096] | : . ' , ; ` 1. sequential: [23:15:47.096] | : . ' , ; ` - args: function (..., envir = parent.frame(), workers = "") [23:15:47.096] | : . ' , ; ` - tweaked: FALSE [23:15:47.096] | : . ' , ; ` - call: plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:15:47.097] | : . ' , ; ` List of 1 [23:15:47.097] | : . ' , ; ` $ :function (..., envir = parent.frame()) [23:15:47.097] | : . ' , ; ` ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:15:47.097] | : . ' , ; ` ..- attr(*, "init")= logi TRUE [23:15:47.097] | : . ' , ; ` ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.097] | : . ' , ; ` .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.097] | : . ' , ; ` ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.097] | : . ' , ; ` ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:15:47.097] | : . ' , ; ` - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:47.102] | : . ' , ; ` plan(): plan_cleanup(<'tweaked', 'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... [23:15:47.103] | : . ' , ; ` plan(): plan_cleanup(<'tweaked', 'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... done [23:15:47.103] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:15:47.103] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:15:47.111] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:15:47.111] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:15:47.112] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:15:47.112] | : . ' , ; ` | all.equal() for FutureStrategyList ... [23:15:47.112] | : . ' , ; ` | : New stack: [23:15:47.112] | : . ' , ; ` | : List of 1 [23:15:47.112] | : . ' , ; ` | : $ :function (..., abc = FALSE, envir = parent.frame()) [23:15:47.112] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [23:15:47.112] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:15:47.112] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.112] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.112] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.112] | : . ' , ; ` | : ..- attr(*, "tweaks")=List of 1 [23:15:47.112] | : . ' , ; ` | : .. ..$ abc: logi FALSE [23:15:47.112] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [23:15:47.112] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:15:47.112] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.112] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.112] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:47.120] | : . ' , ; ` | : Old stack: [23:15:47.120] | : . ' , ; ` | : List of 1 [23:15:47.120] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:15:47.120] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:15:47.120] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [23:15:47.120] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.120] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.120] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.120] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:15:47.120] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:47.125] | : . ' , ; ` | : Not identical [23:15:47.126] | : . ' , ; ` | : all.equal() for future ... [23:15:47.126] | : . ' , ; ` | : . List of 2 [23:15:47.126] | : . ' , ; ` | : . $ target :function (..., abc = FALSE, envir = parent.frame()) [23:15:47.126] | : . ' , ; ` | : . ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [23:15:47.126] | : . ' , ; ` | : . ..- attr(*, "init")= chr "done" [23:15:47.126] | : . ' , ; ` | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.126] | : . ' , ; ` | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.126] | : . ' , ; ` | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.126] | : . ' , ; ` | : . ..- attr(*, "tweaks")=List of 1 [23:15:47.126] | : . ' , ; ` | : . .. ..$ abc: logi FALSE [23:15:47.126] | : . ' , ; ` | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [23:15:47.126] | : . ' , ; ` | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:15:47.126] | : . ' , ; ` | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.126] | : . ' , ; ` | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.126] | : . ' , ; ` | : . $ current:function (..., envir = parent.frame()) [23:15:47.126] | : . ' , ; ` | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:15:47.126] | : . ' , ; ` | : . ..- attr(*, "init")= logi TRUE [23:15:47.126] | : . ' , ; ` | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.126] | : . ' , ; ` | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.126] | : . ' , ; ` | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.126] | : . ' , ; ` | : . ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:15:47.139] | : . ' , ; ` | : . Formals differ [23:15:47.139] | : . ' , ; ` | : all.equal() for future ... done [23:15:47.139] | : . ' , ; ` | : Future strategies differ at level 1 [23:15:47.140] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [23:15:47.140] | : . ' , ; ` | plan(): Setting new future backend stack: [23:15:47.140] | : . ' , ; ` | List of future strategies: [23:15:47.140] | : . ' , ; ` | 1. sequential: [23:15:47.140] | : . ' , ; ` | - args: function (..., abc = FALSE, envir = parent.frame(), workers = "") [23:15:47.140] | : . ' , ; ` | - tweaked: TRUE [23:15:47.140] | : . ' , ; ` | - call: plan(sequential, abc = FALSE) [23:15:47.141] | : . ' , ; ` | List of 1 [23:15:47.141] | : . ' , ; ` | $ :function (..., abc = FALSE, envir = parent.frame()) [23:15:47.141] | : . ' , ; ` | ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [23:15:47.141] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [23:15:47.141] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.141] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.141] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.141] | : . ' , ; ` | ..- attr(*, "tweaks")=List of 1 [23:15:47.141] | : . ' , ; ` | .. ..$ abc: logi FALSE [23:15:47.141] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential, abc = FALSE) [23:15:47.141] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:15:47.141] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.141] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.141] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:47.149] | : . ' , ; ` | plan(): plan_cleanup(<'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... [23:15:47.150] | : . ' , ; ` | plan(): plan_cleanup(<'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... done [23:15:47.150] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:15:47.150] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:15:47.151] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:15:47.151] | : . ' , SequentialFuture started (and completed) [23:15:47.152] | : . ' , signalConditions() ... [23:15:47.152] | : . ' , ; include = 'immediateCondition' [23:15:47.152] | : . ' , ; exclude = [23:15:47.153] | : . ' , ; resignal = FALSE [23:15:47.153] | : . ' , ; Number of conditions: 6 [23:15:47.153] | : . ' , ; int 6 [23:15:47.154] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.155] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.155] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.155] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.155] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.156] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.156] | : . ' , signalConditions() ... done [23:15:47.156] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [23:15:47.157] | : . Launching futures ... done [23:15:47.157] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [23:15:47.157] | : Using SequentialFutureBackend ... done [23:15:47.158] | run() for 'Future' () ... done [23:15:47.158] future(..., label = NULL) ... done > print(x) [23:15:47.159] value() for SequentialFuture () ... [23:15:47.159] | signalConditions() ... [23:15:47.159] | : include = 'immediateCondition' [23:15:47.159] | : exclude = [23:15:47.160] | : resignal = FALSE [23:15:47.160] | : Number of conditions: 6 [23:15:47.160] | : int 6 [23:15:47.161] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.161] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.162] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.162] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.162] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.163] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.163] | signalConditions() ... done [23:15:47.163] | relay stdout ... [23:15:47.163] | relay stdout ... done [23:15:47.164] | check for misuse ... [23:15:47.164] | check for misuse ... done [23:15:47.164] | relay conditions ... [23:15:47.165] | : Future state: 'finished' [23:15:47.165] | : signalConditions() ... [23:15:47.165] | : . include = 'condition' [23:15:47.165] | : . exclude = 'immediateCondition' [23:15:47.166] | : . resignal = TRUE [23:15:47.166] | : . Number of conditions: 6 [23:15:47.166] | : . int 6 [23:15:47.167] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.167] | : . Condition #1: 'simpleMessage', 'message', 'condition' [23:15:47.065] | : . ' , attachPackages() ... [23:15:47.168] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.168] | : . Condition #2: 'simpleMessage', 'message', 'condition' [23:15:47.065] | : . ' , ; packages: [n=1] 'future' [23:15:47.169] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.169] | : . Condition #3: 'simpleMessage', 'message', 'condition' [23:15:47.066] | : . ' , attachPackages() ... done [23:15:47.169] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.169] | : . Condition #4: 'simpleMessage', 'message', 'condition' [23:15:47.066] | : . ' , attachPackages() ... [23:15:47.170] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.170] | : . Condition #5: 'simpleMessage', 'message', 'condition' [23:15:47.066] | : . ' , ; packages: [n=0] [23:15:47.171] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.171] | : . Condition #6: 'simpleMessage', 'message', 'condition' [23:15:47.067] | : . ' , attachPackages() ... done [23:15:47.171] | : signalConditions() ... done [23:15:47.172] | relay conditions ... done [23:15:47.172] value() for SequentialFuture () ... done [1] 1 > stopifnot(a == 0, x == 1) > x %<-% { + a <- 2 + a + } %tweak% list(abc = TRUE) [23:15:47.173] plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:15:47.173] | Getting full stack: [n=1] 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [23:15:47.174] plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:15:47.175] plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = TRUE) ... [23:15:47.175] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = TRUE) ... [23:15:47.175] | : all.equal() for FutureStrategyList ... [23:15:47.175] | : . New stack: [23:15:47.176] | : . List of 1 [23:15:47.176] | : . $ :function (..., abc = TRUE, envir = parent.frame()) [23:15:47.176] | : . ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [23:15:47.176] | : . ..- attr(*, "init")= logi TRUE [23:15:47.176] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.176] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.176] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.176] | : . ..- attr(*, "tweaks")=List of 2 [23:15:47.176] | : . .. ..$ abc: logi FALSE [23:15:47.176] | : . .. ..$ abc: logi TRUE [23:15:47.176] | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [23:15:47.176] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:47.183] | : . Old stack: [23:15:47.183] | : . List of 1 [23:15:47.183] | : . $ :function (..., abc = FALSE, envir = parent.frame()) [23:15:47.183] | : . ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [23:15:47.183] | : . ..- attr(*, "init")= chr "done" [23:15:47.183] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.183] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.183] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.183] | : . ..- attr(*, "tweaks")=List of 1 [23:15:47.183] | : . .. ..$ abc: logi FALSE [23:15:47.183] | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [23:15:47.183] | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:15:47.183] | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.183] | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.183] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:47.191] | : . Not identical [23:15:47.191] | : . all.equal() for future ... [23:15:47.192] | : . ' List of 2 [23:15:47.192] | : . ' $ target :function (..., abc = TRUE, envir = parent.frame()) [23:15:47.192] | : . ' ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [23:15:47.192] | : . ' ..- attr(*, "init")= logi TRUE [23:15:47.192] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.192] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.192] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.192] | : . ' ..- attr(*, "tweaks")=List of 2 [23:15:47.192] | : . ' .. ..$ abc: logi FALSE [23:15:47.192] | : . ' .. ..$ abc: logi TRUE [23:15:47.192] | : . ' ..- attr(*, "call")= language plan(sequential, abc = FALSE) [23:15:47.192] | : . ' $ current:function (..., abc = FALSE, envir = parent.frame()) [23:15:47.192] | : . ' ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [23:15:47.192] | : . ' ..- attr(*, "init")= chr "done" [23:15:47.192] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.192] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.192] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.192] | : . ' ..- attr(*, "tweaks")=List of 1 [23:15:47.192] | : . ' .. ..$ abc: logi FALSE [23:15:47.192] | : . ' ..- attr(*, "call")= language plan(sequential, abc = FALSE) [23:15:47.192] | : . ' ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:15:47.192] | : . ' .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.192] | : . ' .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.205] | : . ' Formals differ [23:15:47.205] | : . all.equal() for future ... done [23:15:47.205] | : . Future strategies differ at level 1 [23:15:47.206] | : all.equal() for FutureStrategyList ... done [23:15:47.206] | : plan(): Setting new future backend stack: [23:15:47.206] | : List of future strategies: [23:15:47.206] | : 1. sequential: [23:15:47.206] | : - args: function (..., abc = TRUE, envir = parent.frame(), workers = "") [23:15:47.206] | : - tweaked: TRUE [23:15:47.206] | : - call: plan(sequential, abc = FALSE) [23:15:47.207] | : List of 1 [23:15:47.207] | : $ :function (..., abc = TRUE, envir = parent.frame()) [23:15:47.207] | : ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [23:15:47.207] | : ..- attr(*, "init")= logi TRUE [23:15:47.207] | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.207] | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.207] | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.207] | : ..- attr(*, "tweaks")=List of 2 [23:15:47.207] | : .. ..$ abc: logi FALSE [23:15:47.207] | : .. ..$ abc: logi TRUE [23:15:47.207] | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [23:15:47.207] | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:47.214] | : plan(): plan_cleanup(<'tweaked', 'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... [23:15:47.215] | : plan(): plan_cleanup(<'tweaked', 'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... done [23:15:47.215] | : plan(): plan_init() of 'tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function' ... [23:15:47.216] | : . function (..., abc = TRUE, envir = parent.frame()) [23:15:47.216] | : . - attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [23:15:47.216] | : . - attr(*, "init")= logi TRUE [23:15:47.216] | : . - attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.216] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.216] | : . - attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.216] | : . - attr(*, "tweaks")=List of 2 [23:15:47.216] | : . ..$ abc: logi FALSE [23:15:47.216] | : . ..$ abc: logi TRUE [23:15:47.216] | : . - attr(*, "call")= language plan(sequential, abc = FALSE) [23:15:47.221] | : . init: TRUE [23:15:47.221] | : . makeFutureBackend() ... [23:15:47.222] | : . ' Backend function: <'NULL'> [23:15:47.222] | : . ' Evaluator tweak arguments: [n=2] [23:15:47.222] | : . ' List of 2 [23:15:47.222] | : . ' $ abc: logi FALSE [23:15:47.222] | : . ' $ abc: logi TRUE [23:15:47.224] | : . ' Evaluator formal arguments: [n=1] [23:15:47.224] | : . ' Dotted pair list of 1 [23:15:47.224] | : . ' $ abc: logi TRUE [23:15:47.226] | : . ' Arguments passed to the future-backend factory: [n=2] [23:15:47.226] | : . ' List of 2 [23:15:47.226] | : . ' $ abc: logi TRUE [23:15:47.226] | : . ' $ abc: logi TRUE [23:15:47.228] | : . ' Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [23:15:47.229] | : . makeFutureBackend() ... done [23:15:47.234] | : plan(): plan_init() of 'tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function' ... done [23:15:47.235] | : nbrOfWorkers(NULL) ... [23:15:47.235] | : . List of 4 [23:15:47.235] | : . $ : language plan_set(strategy, skip = .skip, cleanup = .cleanup, init = .init, debug = debug) [23:15:47.235] | : . $ : language with_assert({ nbrOfWorkers <- nbrOfWorkers() ... [23:15:47.235] | : . $ : language nbrOfWorkers() [23:15:47.235] | : . $ : language nbrOfWorkers.NULL() [23:15:47.238] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:15:47.238] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:15:47.239] | : . Number of workers: 1 [23:15:47.239] | : nbrOfWorkers(NULL) ... done [23:15:47.239] | : plan(): nbrOfWorkers() = 1 [23:15:47.240] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = TRUE) ... done [23:15:47.240] plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = TRUE) ... done [23:15:47.240] future(..., label = NULL) ... [23:15:47.241] | lazy: FALSE [23:15:47.241] | stdout: TRUE [23:15:47.241] | conditions: [n=1] 'condition' [23:15:47.242] | gc: FALSE [23:15:47.242] | earlySignal: FALSE [23:15:47.242] | getGlobalsAndPackages() ... [23:15:47.242] | : Searching for globals ... [23:15:47.256] | : . globals found: [2] '{', '<-' [23:15:47.257] | : Searching for globals ... done [23:15:47.257] | : Resolving globals: FALSE [23:15:47.257] | : Search for packages associated with the globals ... [23:15:47.258] | : . Packages associated with globals: [1] 'base' [23:15:47.258] | : . Packages: [1] 'base' [23:15:47.258] | : Search for packages associated with the globals ... done [23:15:47.259] | : Packages after dropping 'base': [0] [23:15:47.259] | : globals: [0] [23:15:47.259] | : packages: [0] [23:15:47.260] | getGlobalsAndPackages() ... done [23:15:47.260] | run() for 'Future' () ... [23:15:47.261] | : state: 'created' [23:15:47.261] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:15:47.261] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:15:47.262] | : Using SequentialFutureBackend ... [23:15:47.262] | : . Number of futures since start: 0 (0 created, 0 launched, 0 finished) [23:15:47.262] | : . Launching futures ... [23:15:47.263] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [23:15:47.263] | : . ' , getFutureData() ... [23:15:47.263] | : . ' , ; getFutureCore() ... [23:15:47.263] | : . ' , ; ` Packages needed by the future expression (n = 0): [23:15:47.264] | : . ' , ; getFutureCore() ... done [23:15:47.264] | : . ' , ; getFutureCapture() ... [23:15:47.264] | : . ' , ; getFutureCapture() ... done [23:15:47.265] | : . ' , ; getFutureContext() ... [23:15:47.265] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:15:47.265] | : . ' , ; ` | Getting stack without first backend: [n=0] [23:15:47.266] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:15:47.266] | : . ' , ; ` Packages needed by future backend (n = 0): [23:15:47.266] | : . ' , ; getFutureContext() ... done [23:15:47.267] | : . ' , getFutureData() ... done [23:15:47.270] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:15:47.271] | : . ' , ; Getting full stack: [n=1] 'tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [23:15:47.271] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:15:47.272] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:15:47.272] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:15:47.273] | : . ' , ; ` all.equal() for FutureStrategyList ... [23:15:47.273] | : . ' , ; ` | New stack: [23:15:47.273] | : . ' , ; ` | List of 1 [23:15:47.273] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [23:15:47.273] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:15:47.273] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [23:15:47.273] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.273] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.273] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.273] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:15:47.273] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:47.279] | : . ' , ; ` | Old stack: [23:15:47.279] | : . ' , ; ` | List of 1 [23:15:47.279] | : . ' , ; ` | $ :function (..., abc = TRUE, envir = parent.frame()) [23:15:47.279] | : . ' , ; ` | ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [23:15:47.279] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [23:15:47.279] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.279] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.279] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.279] | : . ' , ; ` | ..- attr(*, "tweaks")=List of 2 [23:15:47.279] | : . ' , ; ` | .. ..$ abc: logi FALSE [23:15:47.279] | : . ' , ; ` | .. ..$ abc: logi TRUE [23:15:47.279] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential, abc = FALSE) [23:15:47.279] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:15:47.279] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.279] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.279] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:47.289] | : . ' , ; ` | Not identical [23:15:47.289] | : . ' , ; ` | all.equal() for future ... [23:15:47.289] | : . ' , ; ` | : List of 2 [23:15:47.289] | : . ' , ; ` | : $ target :function (..., envir = parent.frame()) [23:15:47.289] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:15:47.289] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [23:15:47.289] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.289] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.289] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.289] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:15:47.289] | : . ' , ; ` | : $ current:function (..., abc = TRUE, envir = parent.frame()) [23:15:47.289] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [23:15:47.289] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:15:47.289] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.289] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.289] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.289] | : . ' , ; ` | : ..- attr(*, "tweaks")=List of 2 [23:15:47.289] | : . ' , ; ` | : .. ..$ abc: logi FALSE [23:15:47.289] | : . ' , ; ` | : .. ..$ abc: logi TRUE [23:15:47.289] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [23:15:47.289] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:15:47.289] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.289] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.303] | : . ' , ; ` | : Formals differ [23:15:47.303] | : . ' , ; ` | all.equal() for future ... done [23:15:47.303] | : . ' , ; ` | Future strategies differ at level 1 [23:15:47.304] | : . ' , ; ` all.equal() for FutureStrategyList ... done [23:15:47.304] | : . ' , ; ` plan(): Setting new future backend stack: [23:15:47.304] | : . ' , ; ` List of future strategies: [23:15:47.304] | : . ' , ; ` 1. sequential: [23:15:47.304] | : . ' , ; ` - args: function (..., envir = parent.frame(), workers = "") [23:15:47.304] | : . ' , ; ` - tweaked: FALSE [23:15:47.304] | : . ' , ; ` - call: plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:15:47.305] | : . ' , ; ` List of 1 [23:15:47.305] | : . ' , ; ` $ :function (..., envir = parent.frame()) [23:15:47.305] | : . ' , ; ` ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:15:47.305] | : . ' , ; ` ..- attr(*, "init")= logi TRUE [23:15:47.305] | : . ' , ; ` ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.305] | : . ' , ; ` .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.305] | : . ' , ; ` ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.305] | : . ' , ; ` ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:15:47.305] | : . ' , ; ` - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:47.311] | : . ' , ; ` plan(): plan_cleanup(<'tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... [23:15:47.311] | : . ' , ; ` plan(): plan_cleanup(<'tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... done [23:15:47.312] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:15:47.312] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:15:47.317] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:15:47.317] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:15:47.317] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:15:47.318] | : . ' , ; ` | all.equal() for FutureStrategyList ... [23:15:47.318] | : . ' , ; ` | : New stack: [23:15:47.318] | : . ' , ; ` | : List of 1 [23:15:47.318] | : . ' , ; ` | : $ :function (..., abc = TRUE, envir = parent.frame()) [23:15:47.318] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [23:15:47.318] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [23:15:47.318] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.318] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.318] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.318] | : . ' , ; ` | : ..- attr(*, "tweaks")=List of 2 [23:15:47.318] | : . ' , ; ` | : .. ..$ abc: logi FALSE [23:15:47.318] | : . ' , ; ` | : .. ..$ abc: logi TRUE [23:15:47.318] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [23:15:47.318] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:15:47.318] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.318] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.318] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:47.328] | : . ' , ; ` | : Old stack: [23:15:47.328] | : . ' , ; ` | : List of 1 [23:15:47.328] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [23:15:47.328] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:15:47.328] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [23:15:47.328] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.328] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.328] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.328] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:15:47.328] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:47.334] | : . ' , ; ` | : Not identical [23:15:47.334] | : . ' , ; ` | : all.equal() for future ... [23:15:47.335] | : . ' , ; ` | : . List of 2 [23:15:47.335] | : . ' , ; ` | : . $ target :function (..., abc = TRUE, envir = parent.frame()) [23:15:47.335] | : . ' , ; ` | : . ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [23:15:47.335] | : . ' , ; ` | : . ..- attr(*, "init")= chr "done" [23:15:47.335] | : . ' , ; ` | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.335] | : . ' , ; ` | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.335] | : . ' , ; ` | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.335] | : . ' , ; ` | : . ..- attr(*, "tweaks")=List of 2 [23:15:47.335] | : . ' , ; ` | : . .. ..$ abc: logi FALSE [23:15:47.335] | : . ' , ; ` | : . .. ..$ abc: logi TRUE [23:15:47.335] | : . ' , ; ` | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [23:15:47.335] | : . ' , ; ` | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:15:47.335] | : . ' , ; ` | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.335] | : . ' , ; ` | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.335] | : . ' , ; ` | : . $ current:function (..., envir = parent.frame()) [23:15:47.335] | : . ' , ; ` | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:15:47.335] | : . ' , ; ` | : . ..- attr(*, "init")= logi TRUE [23:15:47.335] | : . ' , ; ` | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.335] | : . ' , ; ` | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.335] | : . ' , ; ` | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.335] | : . ' , ; ` | : . ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [23:15:47.348] | : . ' , ; ` | : . Formals differ [23:15:47.348] | : . ' , ; ` | : all.equal() for future ... done [23:15:47.349] | : . ' , ; ` | : Future strategies differ at level 1 [23:15:47.349] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [23:15:47.349] | : . ' , ; ` | plan(): Setting new future backend stack: [23:15:47.350] | : . ' , ; ` | List of future strategies: [23:15:47.350] | : . ' , ; ` | 1. sequential: [23:15:47.350] | : . ' , ; ` | - args: function (..., abc = TRUE, envir = parent.frame(), workers = "") [23:15:47.350] | : . ' , ; ` | - tweaked: TRUE [23:15:47.350] | : . ' , ; ` | - call: plan(sequential, abc = FALSE) [23:15:47.351] | : . ' , ; ` | List of 1 [23:15:47.351] | : . ' , ; ` | $ :function (..., abc = TRUE, envir = parent.frame()) [23:15:47.351] | : . ' , ; ` | ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [23:15:47.351] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [23:15:47.351] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.351] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.351] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.351] | : . ' , ; ` | ..- attr(*, "tweaks")=List of 2 [23:15:47.351] | : . ' , ; ` | .. ..$ abc: logi FALSE [23:15:47.351] | : . ' , ; ` | .. ..$ abc: logi TRUE [23:15:47.351] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential, abc = FALSE) [23:15:47.351] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:15:47.351] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.351] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.351] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:47.365] | : . ' , ; ` | plan(): plan_cleanup(<'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... [23:15:47.366] | : . ' , ; ` | plan(): plan_cleanup(<'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... done [23:15:47.366] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:15:47.366] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:15:47.367] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:15:47.368] | : . ' , SequentialFuture started (and completed) [23:15:47.368] | : . ' , signalConditions() ... [23:15:47.368] | : . ' , ; include = 'immediateCondition' [23:15:47.369] | : . ' , ; exclude = [23:15:47.369] | : . ' , ; resignal = FALSE [23:15:47.369] | : . ' , ; Number of conditions: 6 [23:15:47.369] | : . ' , ; int 6 [23:15:47.370] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.371] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.371] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.371] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.372] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.372] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.372] | : . ' , signalConditions() ... done [23:15:47.373] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [23:15:47.373] | : . Launching futures ... done [23:15:47.373] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [23:15:47.373] | : Using SequentialFutureBackend ... done [23:15:47.374] | run() for 'Future' () ... done [23:15:47.374] future(..., label = NULL) ... done [23:15:47.374] plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:15:47.375] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:15:47.375] | : all.equal() for FutureStrategyList ... [23:15:47.375] | : . New stack: [23:15:47.376] | : . List of 1 [23:15:47.376] | : . $ :function (..., abc = FALSE, envir = parent.frame()) [23:15:47.376] | : . ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [23:15:47.376] | : . ..- attr(*, "init")= chr "done" [23:15:47.376] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.376] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.376] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.376] | : . ..- attr(*, "tweaks")=List of 1 [23:15:47.376] | : . .. ..$ abc: logi FALSE [23:15:47.376] | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [23:15:47.376] | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:15:47.376] | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.376] | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.376] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:47.384] | : . Old stack: [23:15:47.385] | : . List of 1 [23:15:47.385] | : . $ :function (..., abc = TRUE, envir = parent.frame()) [23:15:47.385] | : . ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [23:15:47.385] | : . ..- attr(*, "init")= chr "done" [23:15:47.385] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.385] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.385] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.385] | : . ..- attr(*, "tweaks")=List of 2 [23:15:47.385] | : . .. ..$ abc: logi FALSE [23:15:47.385] | : . .. ..$ abc: logi TRUE [23:15:47.385] | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [23:15:47.385] | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:15:47.385] | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.385] | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.385] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:47.393] | : . Not identical [23:15:47.394] | : . all.equal() for future ... [23:15:47.394] | : . ' List of 2 [23:15:47.394] | : . ' $ target :function (..., abc = FALSE, envir = parent.frame()) [23:15:47.394] | : . ' ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [23:15:47.394] | : . ' ..- attr(*, "init")= chr "done" [23:15:47.394] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.394] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.394] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.394] | : . ' ..- attr(*, "tweaks")=List of 1 [23:15:47.394] | : . ' .. ..$ abc: logi FALSE [23:15:47.394] | : . ' ..- attr(*, "call")= language plan(sequential, abc = FALSE) [23:15:47.394] | : . ' ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:15:47.394] | : . ' .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.394] | : . ' .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.394] | : . ' $ current:function (..., abc = TRUE, envir = parent.frame()) [23:15:47.394] | : . ' ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [23:15:47.394] | : . ' ..- attr(*, "init")= chr "done" [23:15:47.394] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.394] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.394] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.394] | : . ' ..- attr(*, "tweaks")=List of 2 [23:15:47.394] | : . ' .. ..$ abc: logi FALSE [23:15:47.394] | : . ' .. ..$ abc: logi TRUE [23:15:47.394] | : . ' ..- attr(*, "call")= language plan(sequential, abc = FALSE) [23:15:47.394] | : . ' ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:15:47.394] | : . ' .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.394] | : . ' .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.410] | : . ' Formals differ [23:15:47.411] | : . all.equal() for future ... done [23:15:47.411] | : . Future strategies differ at level 1 [23:15:47.411] | : all.equal() for FutureStrategyList ... done [23:15:47.412] | : plan(): Setting new future backend stack: [23:15:47.412] | : List of future strategies: [23:15:47.412] | : 1. sequential: [23:15:47.412] | : - args: function (..., abc = FALSE, envir = parent.frame(), workers = "") [23:15:47.412] | : - tweaked: TRUE [23:15:47.412] | : - call: plan(sequential, abc = FALSE) [23:15:47.413] | : List of 1 [23:15:47.413] | : $ :function (..., abc = FALSE, envir = parent.frame()) [23:15:47.413] | : ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [23:15:47.413] | : ..- attr(*, "init")= chr "done" [23:15:47.413] | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.413] | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.413] | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.413] | : ..- attr(*, "tweaks")=List of 1 [23:15:47.413] | : .. ..$ abc: logi FALSE [23:15:47.413] | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [23:15:47.413] | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:15:47.413] | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.413] | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.413] | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:47.421] | : plan(): plan_cleanup(<'tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... [23:15:47.421] | : plan(): plan_cleanup(<'tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... done [23:15:47.422] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:15:47.422] plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done > print(x) [23:15:47.423] value() for SequentialFuture () ... [23:15:47.423] | signalConditions() ... [23:15:47.423] | : include = 'immediateCondition' [23:15:47.424] | : exclude = [23:15:47.424] | : resignal = FALSE [23:15:47.424] | : Number of conditions: 6 [23:15:47.424] | : int 6 [23:15:47.425] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.426] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.426] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.426] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.427] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.427] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.427] | signalConditions() ... done [23:15:47.427] | relay stdout ... [23:15:47.428] | relay stdout ... done [23:15:47.428] | check for misuse ... [23:15:47.428] | check for misuse ... done [23:15:47.429] | relay conditions ... [23:15:47.429] | : Future state: 'finished' [23:15:47.429] | : signalConditions() ... [23:15:47.430] | : . include = 'condition' [23:15:47.430] | : . exclude = 'immediateCondition' [23:15:47.430] | : . resignal = TRUE [23:15:47.430] | : . Number of conditions: 6 [23:15:47.431] | : . int 6 [23:15:47.432] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.432] | : . Condition #1: 'simpleMessage', 'message', 'condition' [23:15:47.267] | : . ' , attachPackages() ... [23:15:47.432] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.433] | : . Condition #2: 'simpleMessage', 'message', 'condition' [23:15:47.268] | : . ' , ; packages: [n=1] 'future' [23:15:47.433] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.433] | : . Condition #3: 'simpleMessage', 'message', 'condition' [23:15:47.268] | : . ' , attachPackages() ... done [23:15:47.434] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.434] | : . Condition #4: 'simpleMessage', 'message', 'condition' [23:15:47.269] | : . ' , attachPackages() ... [23:15:47.434] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.435] | : . Condition #5: 'simpleMessage', 'message', 'condition' [23:15:47.269] | : . ' , ; packages: [n=0] [23:15:47.435] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.435] | : . Condition #6: 'simpleMessage', 'message', 'condition' [23:15:47.269] | : . ' , attachPackages() ... done [23:15:47.436] | : signalConditions() ... done [23:15:47.436] | relay conditions ... done [23:15:47.436] value() for SequentialFuture () ... done [1] 2 > stopifnot(a == 0, x == 2) > plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [23:15:47.437] plan(<'call'>, .skip = FALSE, .cleanup = NA, .init = TRUE) ... Warning: Detected 1 unknown future arguments: 'abc' [23:15:47.439] | plan(): plan_set(<2 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... [23:15:47.439] | : all.equal() for FutureStrategyList ... [23:15:47.439] | : . Different lengths [23:15:47.439] | : all.equal() for FutureStrategyList ... done [23:15:47.440] | : plan(): Setting new future backend stack: [23:15:47.440] | : List of future strategies: [23:15:47.440] | : 1. sequential: [23:15:47.440] | : - args: function (..., envir = parent.frame(), workers = "") [23:15:47.440] | : - tweaked: FALSE [23:15:47.440] | : - call: plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [23:15:47.440] | : 2. sequential: [23:15:47.440] | : - args: function (..., abc = FALSE, envir = parent.frame(), workers = "") [23:15:47.440] | : - tweaked: TRUE [23:15:47.440] | : - call: plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [23:15:47.442] | : List of 2 [23:15:47.442] | : $ A:function (..., envir = parent.frame()) [23:15:47.442] | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:15:47.442] | : ..- attr(*, "init")= logi TRUE [23:15:47.442] | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.442] | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.442] | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.442] | : ..- attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [23:15:47.442] | : $ B:function (..., abc = FALSE, envir = parent.frame()) [23:15:47.442] | : ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [23:15:47.442] | : ..- attr(*, "init")= logi TRUE [23:15:47.442] | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.442] | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.442] | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.442] | : ..- attr(*, "tweaks")=List of 1 [23:15:47.442] | : .. ..$ abc: logi FALSE [23:15:47.442] | : ..- attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [23:15:47.442] | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:47.453] | : plan(): plan_cleanup(<'tweaked', 'sequential', 'uniprocess', 'future', 'function'>, cleanup = NA) ... [23:15:47.453] | : . plan("next", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:15:47.453] | : . ' Getting current ("next") strategy: 'FutureStrategy', 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [23:15:47.454] | : . plan("next", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:15:47.454] | : . Legacy shutdown of cluster workers ... [23:15:47.454] | : . ' Stopping existing cluster ... [23:15:47.454] | : . ' , No pre-existing cluster. Skipping [23:15:47.455] | : . ' Stopping existing cluster ... done [23:15:47.455] | : . Legacy shutdown of cluster workers ... done [23:15:47.455] | : plan(): plan_cleanup(<'tweaked', 'sequential', 'uniprocess', 'future', 'function'>, cleanup = NA) ... done [23:15:47.456] | : plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... [23:15:47.456] | : . function (..., envir = parent.frame()) [23:15:47.456] | : . - attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:15:47.456] | : . - attr(*, "init")= logi TRUE [23:15:47.456] | : . - attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.456] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.456] | : . - attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.456] | : . - attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [23:15:47.460] | : . init: TRUE [23:15:47.461] | : . makeFutureBackend() ... [23:15:47.461] | : . ' Backend function: <'NULL'> [23:15:47.461] | : . ' Evaluator tweak arguments: [n=0] [23:15:47.462] | : . ' list() [23:15:47.462] | : . ' Evaluator formal arguments: [n=0] [23:15:47.463] | : . ' NULL [23:15:47.463] | : . ' Arguments passed to the future-backend factory: [n=0] [23:15:47.464] | : . ' list() [23:15:47.464] | : . ' Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [23:15:47.465] | : . makeFutureBackend() ... done [23:15:47.465] | : plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... done [23:15:47.465] | : nbrOfWorkers(NULL) ... [23:15:47.466] | : . List of 4 [23:15:47.466] | : . $ : language plan_set(newStack, skip = .skip, cleanup = .cleanup, init = .init, debug = debug) [23:15:47.466] | : . $ : language with_assert({ nbrOfWorkers <- nbrOfWorkers() ... [23:15:47.466] | : . $ : language nbrOfWorkers() [23:15:47.466] | : . $ : language nbrOfWorkers.NULL() [23:15:47.469] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:15:47.469] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:15:47.469] | : . Number of workers: 1 [23:15:47.470] | : nbrOfWorkers(NULL) ... done [23:15:47.470] | : plan(): nbrOfWorkers() = 1 [23:15:47.470] | plan(): plan_set(<2 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... done [23:15:47.471] plan(<'call'>, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done > a <- 0 > x %<-% { + stopifnot(identical(names(plan("list")), "B")) + a <- 1 + a + } [23:15:47.472] future(..., label = NULL) ... [23:15:47.472] | lazy: FALSE [23:15:47.472] | stdout: TRUE [23:15:47.472] | conditions: [n=1] 'condition' [23:15:47.473] | gc: FALSE [23:15:47.473] | earlySignal: FALSE [23:15:47.473] | getGlobalsAndPackages() ... [23:15:47.474] | : Searching for globals ... [23:15:47.513] | : . globals found: [6] '{', 'stopifnot', 'identical', 'names', 'plan', '<-' [23:15:47.513] | : Searching for globals ... done [23:15:47.514] | : Resolving globals: FALSE [23:15:47.514] | : Search for packages associated with the globals ... [23:15:47.515] | : . Packages associated with globals: [1] 'base' [23:15:47.516] | : . Packages: [1] 'base' [23:15:47.516] | : Search for packages associated with the globals ... done [23:15:47.516] | : Packages after dropping 'base': [0] [23:15:47.517] | : globals: [1] 'plan' [23:15:47.517] | : packages: [0] [23:15:47.517] | getGlobalsAndPackages() ... done [23:15:47.518] | run() for 'Future' () ... [23:15:47.518] | : state: 'created' [23:15:47.519] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:15:47.519] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:15:47.519] | : Using SequentialFutureBackend ... [23:15:47.520] | : . Number of futures since start: 0 (0 created, 0 launched, 0 finished) [23:15:47.520] | : . Launching futures ... [23:15:47.520] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [23:15:47.521] | : . ' , getFutureData() ... [23:15:47.521] | : . ' , ; getFutureCore() ... [23:15:47.521] | : . ' , ; ` Packages needed by the future expression (n = 0): [23:15:47.521] | : . ' , ; getFutureCore() ... done [23:15:47.522] | : . ' , ; getFutureCapture() ... [23:15:47.522] | : . ' , ; getFutureCapture() ... done [23:15:47.522] | : . ' , ; getFutureContext() ... [23:15:47.523] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:15:47.523] | : . ' , ; ` | Getting stack without first backend: [n=1] 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [23:15:47.524] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:15:47.524] | : . ' , ; ` Packages needed by future strategies (n = 0): [23:15:47.524] | : . ' , ; getFutureContext() ... done [23:15:47.525] | : . ' , getFutureData() ... done [23:15:47.528] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:15:47.528] | : . ' , ; Getting full stack: [n=2] 'c("sequential", "uniprocess", "future", "function")', 'c("tweaked", "sequential", "uniprocess", "future", "function")' [23:15:47.529] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:15:47.529] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:15:47.530] | : . ' , ; plan(<'list'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:15:47.530] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:15:47.530] | : . ' , ; ` | all.equal() for FutureStrategyList ... [23:15:47.531] | : . ' , ; ` | : Different lengths [23:15:47.531] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [23:15:47.531] | : . ' , ; ` | plan(): Setting new future backend stack: [23:15:47.532] | : . ' , ; ` | List of future strategies: [23:15:47.532] | : . ' , ; ` | 1. sequential: [23:15:47.532] | : . ' , ; ` | - args: function (..., abc = FALSE, envir = parent.frame(), workers = "") [23:15:47.532] | : . ' , ; ` | - tweaked: TRUE [23:15:47.532] | : . ' , ; ` | - call: plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [23:15:47.533] | : . ' , ; ` | List of 1 [23:15:47.533] | : . ' , ; ` | $ B:function (..., abc = FALSE, envir = parent.frame()) [23:15:47.533] | : . ' , ; ` | ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [23:15:47.533] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [23:15:47.533] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.533] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.533] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.533] | : . ' , ; ` | ..- attr(*, "tweaks")=List of 1 [23:15:47.533] | : . ' , ; ` | .. ..$ abc: logi FALSE [23:15:47.533] | : . ' , ; ` | ..- attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [23:15:47.533] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:47.540] | : . ' , ; ` | plan(): plan_cleanup(<'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... [23:15:47.540] | : . ' , ; ` | plan(): plan_cleanup(<'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... done [23:15:47.541] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:15:47.541] | : . ' , ; plan(<'list'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:15:47.541] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:15:47.542] | : . ' , assign_globals() ... [23:15:47.542] | : . ' , List of 1 [23:15:47.542] | : . ' , $ plan:function (strategy = NULL, ..., substitute = TRUE, .skip = FALSE, .call = TRUE, [23:15:47.542] | : . ' , .cleanup = NA, .init = TRUE) [23:15:47.542] | : . ' , - attr(*, "where")=List of 1 [23:15:47.542] | : . ' , ..$ plan: [23:15:47.542] | : . ' , .. ..- attr(*, "name")= chr "package:future" [23:15:47.542] | : . ' , .. ..- attr(*, "path")= chr "D:/RCompile/CRANincoming/R-devel/lib/future" [23:15:47.542] | : . ' , - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [23:15:47.542] | : . ' , - attr(*, "resolved")= logi FALSE [23:15:47.542] | : . ' , - attr(*, "total_size")= num NA [23:15:47.542] | : . ' , - attr(*, "already-done")= logi TRUE [23:15:47.549] | : . ' , - copied 'plan' to environment [23:15:47.549] | : . ' , assign_globals() ... done [23:15:47.554] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:15:47.555] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [23:15:47.555] | : . ' , ; ` plan(): plan_set(<2 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [23:15:47.556] | : . ' , ; ` | all.equal() for FutureStrategyList ... [23:15:47.556] | : . ' , ; ` | : Different lengths [23:15:47.556] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [23:15:47.556] | : . ' , ; ` | plan(): Setting new future backend stack: [23:15:47.557] | : . ' , ; ` | List of future strategies: [23:15:47.557] | : . ' , ; ` | 1. sequential: [23:15:47.557] | : . ' , ; ` | - args: function (..., envir = parent.frame(), workers = "") [23:15:47.557] | : . ' , ; ` | - tweaked: FALSE [23:15:47.557] | : . ' , ; ` | - call: plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [23:15:47.557] | : . ' , ; ` | 2. sequential: [23:15:47.557] | : . ' , ; ` | - args: function (..., abc = FALSE, envir = parent.frame(), workers = "") [23:15:47.557] | : . ' , ; ` | - tweaked: TRUE [23:15:47.557] | : . ' , ; ` | - call: plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [23:15:47.558] | : . ' , ; ` | List of 2 [23:15:47.558] | : . ' , ; ` | $ A:function (..., envir = parent.frame()) [23:15:47.558] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [23:15:47.558] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [23:15:47.558] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.558] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.558] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.558] | : . ' , ; ` | ..- attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [23:15:47.558] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [23:15:47.558] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.558] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.558] | : . ' , ; ` | $ B:function (..., abc = FALSE, envir = parent.frame()) [23:15:47.558] | : . ' , ; ` | ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [23:15:47.558] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [23:15:47.558] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [23:15:47.558] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.558] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [23:15:47.558] | : . ' , ; ` | ..- attr(*, "tweaks")=List of 1 [23:15:47.558] | : . ' , ; ` | .. ..$ abc: logi FALSE [23:15:47.558] | : . ' , ; ` | ..- attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [23:15:47.558] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [23:15:47.571] | : . ' , ; ` | plan(): plan_cleanup(<'tweaked', 'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... [23:15:47.571] | : . ' , ; ` | plan(): plan_cleanup(<'tweaked', 'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... done [23:15:47.572] | : . ' , ; ` plan(): plan_set(<2 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [23:15:47.572] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:15:47.572] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [23:15:47.573] | : . ' , SequentialFuture started (and completed) [23:15:47.574] | : . ' , signalConditions() ... [23:15:47.574] | : . ' , ; include = 'immediateCondition' [23:15:47.574] | : . ' , ; exclude = [23:15:47.575] | : . ' , ; resignal = FALSE [23:15:47.575] | : . ' , ; Number of conditions: 9 [23:15:47.575] | : . ' , ; int 9 [23:15:47.576] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.576] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.577] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.577] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.577] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.578] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.578] | : . ' , ; Condition #7 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.578] | : . ' , ; Condition #8 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.579] | : . ' , ; Condition #9 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.579] | : . ' , signalConditions() ... done [23:15:47.579] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [23:15:47.580] | : . Launching futures ... done [23:15:47.580] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [23:15:47.580] | : Using SequentialFutureBackend ... done [23:15:47.581] | run() for 'Future' () ... done [23:15:47.581] future(..., label = NULL) ... done > print(x) [23:15:47.582] value() for SequentialFuture () ... [23:15:47.582] | signalConditions() ... [23:15:47.582] | : include = 'immediateCondition' [23:15:47.583] | : exclude = [23:15:47.583] | : resignal = FALSE [23:15:47.583] | : Number of conditions: 9 [23:15:47.584] | : int 9 [23:15:47.585] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.585] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.585] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.586] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.586] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.586] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.586] | : Condition #7 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.587] | : Condition #8 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.587] | : Condition #9 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.587] | signalConditions() ... done [23:15:47.588] | relay stdout ... [23:15:47.588] | relay stdout ... done [23:15:47.588] | check for misuse ... [23:15:47.589] | check for misuse ... done [23:15:47.589] | relay conditions ... [23:15:47.589] | : Future state: 'finished' [23:15:47.590] | : signalConditions() ... [23:15:47.590] | : . include = 'condition' [23:15:47.590] | : . exclude = 'immediateCondition' [23:15:47.590] | : . resignal = TRUE [23:15:47.591] | : . Number of conditions: 9 [23:15:47.591] | : . int 9 [23:15:47.592] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.592] | : . Condition #1: 'simpleMessage', 'message', 'condition' [23:15:47.525] | : . ' , attachPackages() ... [23:15:47.593] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.593] | : . Condition #2: 'simpleMessage', 'message', 'condition' [23:15:47.526] | : . ' , ; packages: [n=0] [23:15:47.593] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.594] | : . Condition #3: 'simpleMessage', 'message', 'condition' [23:15:47.526] | : . ' , attachPackages() ... done [23:15:47.594] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.594] | : . Condition #4: 'simpleMessage', 'message', 'condition' [23:15:47.526] | : . ' , attachPackages() ... [23:15:47.595] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.595] | : . Condition #5: 'simpleMessage', 'message', 'condition' [23:15:47.527] | : . ' , ; packages: [n=0] [23:15:47.595] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.596] | : . Condition #6: 'simpleMessage', 'message', 'condition' [23:15:47.527] | : . ' , attachPackages() ... done [23:15:47.596] | : . Condition #7 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.596] | : . Condition #7: 'simpleMessage', 'message', 'condition' [23:15:47.550] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [23:15:47.597] | : . Condition #8 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.597] | : . Condition #8: 'simpleMessage', 'message', 'condition' [23:15:47.550] | : . ' , ; Getting full stack: [n=1] 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [23:15:47.597] | : . Condition #9 (class: 'simpleMessage', 'message', 'condition'): [23:15:47.598] | : . Condition #9: 'simpleMessage', 'message', 'condition' [23:15:47.550] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [23:15:47.598] | : signalConditions() ... done [23:15:47.598] | relay conditions ... done [23:15:47.599] value() for SequentialFuture () ... done [1] 1 > stopifnot(a == 0, x == 1) > message("*** y %<-% { expr } %tweak% tweaks ... DONE") *** y %<-% { expr } %tweak% tweaks ... DONE > message("*** tweak() - abc = TRUE ...") *** tweak() - abc = TRUE ... > res <- tryCatch(tweak(multisession, gc = TRUE), condition = identity) > stopifnot(inherits(res, "tweaked")) > res <- tryCatch(tweak(sequential, abc = TRUE), condition = identity) > stopifnot(inherits(res, "warning")) > res <- tryCatch(tweak(multicore, abc = TRUE), condition = identity) > stopifnot(inherits(res, "warning")) > message("*** tweak() - abc = TRUE ... DONE") *** tweak() - abc = TRUE ... DONE > message("*** tweak() - odds and ends ...") *** tweak() - odds and ends ... > length.Formula <- function(x) c(1, 1) > expr <- structure(y ~ x, class = "Formula") > stopifnot(length(length(expr)) == 2) > gp <- future::getGlobalsAndPackages(expr) [23:15:47.604] getGlobalsAndPackages() ... [23:15:47.604] | Searching for globals ... [23:15:47.615] | : globals found: [4] '{', 'y', 'x', '~' [23:15:47.616] | Searching for globals ... done [23:15:47.616] | Resolving globals: FALSE [23:15:47.616] | Search for packages associated with the globals ... [23:15:47.617] | : Packages associated with globals: [1] 'base' [23:15:47.617] | : Packages: [1] 'base' [23:15:47.618] | Search for packages associated with the globals ... done [23:15:47.619] | The total size of the 1 globals is 39 bytes (39 bytes) [23:15:47.620] | The total size of the 1 globals exported for future expression ('y ~ x') is 39 bytes There is one global: 'x' (39 bytes of class 'numeric') [23:15:47.625] | Packages after dropping 'base': [0] [23:15:47.625] | globals: [1] 'x' [23:15:47.626] | packages: [0] [23:15:47.626] getGlobalsAndPackages() ... done > stopifnot(!inherits(gp, "error"), is.list(gp), all(c("expr", + "globals", "packages") %in% names(gp))) > message("*** tweak() - odds and ends ... DONE") *** tweak() - odds and ends ... DONE > message("*** tweak() - exceptions ...") *** tweak() - exceptions ... > res <- try(tweak(""), silent = TRUE) > stopifnot(inherits(res, "try-error")) > res <- try(tweak(base::eval), silent = TRUE) > stopifnot(inherits(res, "try-error")) > res <- try(tweak(sequential, "unnamed-argument"), + silent = TRUE) > stopifnot(inherits(res, "try-error")) > res <- try(tweak(sequential, lazy = TRUE), silent = TRUE) > stopifnot(inherits(res, "try-error")) > res <- try(tweak(sequential, asynchronous = FALSE), + silent = TRUE) > stopifnot(inherits(res, "try-error")) > res <- try(tweak(sequential, seed = 42), silent = TRUE) > stopifnot(inherits(res, "try-error")) > message("*** tweak() - exceptions ... DONE") *** tweak() - exceptions ... DONE > message("*** Tweaking future strategies ... DONE") *** Tweaking future strategies ... DONE Sourcing 6 epilogue scripts ... 01/06 epilogue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_epilogue/001.undo-future.R' 02/06 epilogue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_epilogue/002.undo-state.R' Failed to undo environment variables: - Expected environment variables: [n=214] '!ExitCode', 'ALLUSERSPROFILE', 'APPDATA', 'BIBINPUTS', 'BINDIR', 'BSTINPUTS', 'COMMONPROGRAMFILES', 'COMPUTERNAME', 'COMSPEC', 'CURL_CA_BUNDLE', 'CV_Instance001', 'CYGWIN', 'CommonProgramFiles(x86)', 'CommonProgramW6432', 'DriverData', 'HOME', 'HOMEDRIVE', 'HOMEPATH', 'JAGS_ROOT', 'JAVA_HOME', 'LANGUAGE', 'LC_COLLATE', 'LC_MONETARY', 'LC_TIME', 'LOCALAPPDATA', 'LOGONSERVER', 'LS_HOME', 'LS_LICENSE_PATH', 'MAKE', 'MAKEFLAGS', 'MAKELEVEL', 'MFLAGS', 'MSMPI_BENCHMARKS', 'MSMPI_BIN', 'MSYS2_ENV_CONV_EXCL', 'NUMBER_OF_PROCESSORS', 'OCL', 'OMP_THREAD_LIMIT', 'OS', 'PATH', 'PATHEXT', 'PROCESSOR_ARCHITECTURE', 'PROCESSOR_IDENTIFIER', 'PROCESSOR_LEVEL', 'PROCESSOR_REVISION', 'PROGRAMFILES', 'PROMPT', 'PSModulePath', 'PUBLIC', 'PWD', 'ProgramData', 'ProgramFiles(x86)', 'ProgramW6432', 'RTOOLS44_HOME', 'RTOOLS45_HOME', 'R_ARCH', 'R_BROWSER', 'R_BZIPCMD', 'R_CMD', 'R_COMPILED_BY', 'R_CRAN_WEB', 'R_CUSTOM_TOOLS_PATH', 'R_CUSTOM_TOOLS_SOFT', 'R_DOC_DIR', 'R_ENVIRON_USER', 'R_GSCMD', 'R_GZIPCMD', 'R_HOME', 'R_INCLUDE_DIR', 'R_INSTALL_TAR', 'R_LIBS', 'R_LIBS_SITE', 'R_LIBS_USER', 'R_MAX_NUM_DLLS', 'R_OSTYPE', 'R_PAPERSIZE', 'R_PAPERSIZE_USER', 'R_PARALLELLY_MAKENODEPSOCK_AUTOKILL', 'R_PARALLELLY_MAKENODEPSOCK_CONNECTTIMEOUT', 'R_PARALLELLY_MAKENODEPSOCK_RSCRIPT_LABEL', 'R_PARALLELLY_MAKENODEPSOCK_SESSIONINFO_PKGS', 'R_PARALLELLY_MAKENODEPSOCK_TIMEOUT', 'R_PARALLELLY_RANDOM_PORTS', 'R_PARALLEL_PORT', 'R_RD4PDF', 'R_RTOOLS45_PATH', 'R_SCRIPT_LEGACY', 'R_SHARE_DIR', 'R_TESTME_NAME', 'R_TESTME_PACKAGE', 'R_TESTME_PATH', 'R_TESTS', 'R_UNZIPCMD', 'R_USER', 'R_VERSION', 'R_ZIPCMD', 'SED', 'SHLVL', 'SYSTEMDRIVE', 'SYSTEMROOT', 'TAR', 'TAR_OPTIONS', 'TEMP', 'TERM', 'TEXINPUTS', 'TMP', 'TMPDIR', 'USERDOMAIN', 'USERDOMAIN_ROAMINGPROFILE', 'USERNAME', 'USERPROFILE', 'WINDIR', '_', '_R_CHECK_AUTOCONF_', '_R_CHECK_BOGUS_RETURN_', '_R_CHECK_BROWSER_NONINTERACTIVE_', '_R_CHECK_BUILD_VIGNETTES_SEPARATELY_', '_R_CHECK_CODETOOLS_PROFILE_', '_R_CHECK_CODE_ASSIGN_TO_GLOBALENV_', '_R_CHECK_CODE_ATTACH_', '_R_CHECK_CODE_CLASS_IS_STRING_', '_R_CHECK_CODE_DATA_INTO_GLOBALENV_', '_R_CHECK_CODE_USAGE_VIA_NAMESPACES_', '_R_CHECK_CODE_USAGE_WITHOUT_LOADING_', '_R_CHECK_CODE_USAGE_WITH_ONLY_BASE_ATTACHED_', '_R_CHECK_CODOC_VARIABLES_IN_USAGES_', '_R_CHECK_COMPACT_DATA2_', '_R_CHECK_COMPILATION_FLAGS_', '_R_CHECK_CONNECTIONS_LEFT_OPEN_', '_R_CHECK_CRAN_INCOMING_', '_R_CHECK_CRAN_INCOMING_ASPELL_RECHECK_MAYBE_', '_R_CHECK_CRAN_INCOMING_ASPELL_RECHECK_START_', '_R_CHECK_CRAN_INCOMING_CHECK_FILE_URIS_', '_R_CHECK_CRAN_INCOMING_CHECK_URLS_IN_PARALLEL_', '_R_CHECK_CRAN_INCOMING_NOTE_GNU_MAKE_', '_R_CHECK_CRAN_INCOMING_REMOTE_', '_R_CHECK_CRAN_INCOMING_USE_ASPELL_', '_R_CHECK_DATALIST_', '_R_CHECK_DEPRECATED_DEFUNCT_', '_R_CHECK_DOC_SIZES2_', '_R_CHECK_DOT_FIRSTLIB_', '_R_CHECK_DOT_INTERNAL_', '_R_CHECK_EXAMPLE_TIMING_THRESHOLD_', '_R_CHECK_EXECUTABLES_', '_R_CHECK_EXECUTABLES_EXCLUSIONS_', '_R_CHECK_FF_CALLS_', '_R_CHECK_FF_DUP_', '_R_CHECK_FORCE_SUGGESTS_', '_R_CHECK_FUTURE_FILE_TIMESTAMPS_', '_R_CHECK_FUTURE_FILE_TIMESTAMPS_LEEWAY_', '_R_CHECK_HAVE_MYSQL_', '_R_CHECK_HAVE_ODBC_', '_R_CHECK_HAVE_PERL_', '_R_CHECK_HAVE_POSTGRES_', '_R_CHECK_INSTALL_DEPENDS_', '_R_CHECK_INTERNALS2_', '_R_CHECK_LENGTH_1_CONDITION_', '_R_CHECK_LICENSE_', '_R_CHECK_LIMIT_CORES_', '_R_CHECK_LOG_USE_INFO_', '_R_CHECK_MATRIX_DATA_', '_R_CHECK_MBCS_CONVERSION_FAILURE_', '_R_CHECK_NATIVE_ROUTINE_REGISTRATION_', '_R_CHECK_NEWS_IN_PLAIN_TEXT_', '_R_CHECK_NO_RECOMMENDED_', '_R_CHECK_NO_STOP_ON_TEST_ERROR_', '_R_CHECK_ORPHANED_', '_R_CHECK_OVERWRITE_REGISTERED_S3_METHODS_', '_R_CHECK_PACKAGES_USED_IGNORE_UNUSED_IMPORTS_', '_R_CHECK_PACKAGES_USED_IN_TESTS_USE_SUBDIRS_', '_R_CHECK_PACKAGE_DATASETS_SUPPRESS_NOTES_', '_R_CHECK_PACKAGE_NAME_', '_R_CHECK_PKG_SIZES_', '_R_CHECK_PKG_SIZES_THRESHOLD_', '_R_CHECK_PRAGMAS_', '_R_CHECK_RD_EXAMPLES_T_AND_F_', '_R_CHECK_RD_LINE_WIDTHS_', '_R_CHECK_RD_MATH_RENDERING_', '_R_CHECK_RD_NOTE_LOST_BRACES_', '_R_CHECK_RD_VALIDATE_RD2HTML_', '_R_CHECK_REPLACING_IMPORTS_', '_R_CHECK_R_DEPENDS_', '_R_CHECK_S3_METHODS_SHOW_POSSIBLE_ISSUES_', '_R_CHECK_SCREEN_DEVICE_', '_R_CHECK_SERIALIZATION_', '_R_CHECK_SHLIB_OPENMP_FLAGS_', '_R_CHECK_SRC_MINUS_W_IMPLICIT_', '_R_CHECK_SUBDIRS_NOCASE_', '_R_CHECK_SUGGESTS_ONLY_', '_R_CHECK_SYSTEM_CLOCK_', '_R_CHECK_TESTS_NLINES_', '_R_CHECK_TEST_TIMING_', '_R_CHECK_TIMINGS_', '_R_CHECK_TOPLEVEL_FILES_', '_R_CHECK_UNDOC_USE_ALL_NAMES_', '_R_CHECK_UNSAFE_CALLS_', '_R_CHECK_URLS_SHOW_301_STATUS_', '_R_CHECK_VC_DIRS_', '_R_CHECK_VIGNETTES_NLINES_', '_R_CHECK_VIGNETTES_SKIP_RUN_MAYBE_', '_R_CHECK_VIGNETTE_TIMING_', '_R_CHECK_VIGNETTE_TITLES_', '_R_CHECK_WINDOWS_DEVICE_', '_R_CHECK_XREFS_NOTE_MISSING_PACKAGE_ANCHORS_', '_R_CHECK_XREFS_USE_ALIASES_FROM_CRAN_', '_R_CLASS_MATRIX_ARRAY_', '_R_DEPRECATED_IS_R_', '_R_S3_METHOD_LOOKUP_BASEENV_AFTER_GLOBALENV_', '_R_SHLIB_BUILD_OBJECTS_SYMBOL_TABLES_', '_R_USE_STRICT_R_HEADERS_', '__R_CHECK_DOC_FILES_NOTE_IF_ALL_INTERNAL__', 'maj.version', 'nextArg--timingsnextArg--install', 'tempdirname' - Environment variables still there: [n=0] - Environment variables missing: [n=1] 'MAKEFLAGS' Differences environment variable by environment variable: 03/06 epilogue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_epilogue/090.gc.R' 04/06 epilogue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_epilogue/099.session_info.R' 05/06 epilogue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_epilogue/995.detritus-connections.R' 06/06 epilogue script 'D:/RCompile/CRANincoming/R-devel/lib/future/testme/_epilogue/999.detritus-files.R' Skipping, because path appears not to be an 'R CMD check' folder: 'D:/temp/2025_11_16_23_10_16_9296' Sourcing 6 epilogue scripts ... done Test time: user.self=2s, sys.self=0.08s, elapsed=3s, user.child=NAs, sys.child=NAs Test 'tweak' ... success > > proc.time() user system elapsed 2.17 0.20 3.06