R Under development (unstable) (2025-07-28 r88462 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) [12:35:45.995] Option 'future.startup.script': TRUE [12:35:45.996] Future startup scripts considered: '.future.R', '~/.future.R' [12:35:45.997] 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 [12:35:47.836] plan(<'call'>, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:47.836] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... [12:35:47.837] | : all.equal() for FutureStrategyList ... [12:35:47.837] | : . New stack: [12:35:47.837] | : . List of 1 [12:35:47.837] | : . $ :function (..., workers = list(list(con = 4L, host = "localhost", rank = 0L, [12:35:47.837] | : . session_info = list(process = list(pid = 143648L), r = list(platform = "x86_64-w64-mingw32", [12:35:47.837] | : . arch = "x86_64", os = "mingw32", crt = "ucrt", system = "x86_64, mingw32", [12:35:47.837] | : . status = "Under development (unstable)", major = "4", minor = "6.0", [12:35:47.837] | : . year = "2025", month = "07", day = "28", `svn rev` = "88462", language = "R", [12:35:47.837] | : . version.string = "R Under development (unstable) (2025-07-28 r88462 ucrt)", [12:35:47.837] | : . nickname = "Unsuffered Consequences", os.type = "windows"), system = list( [12:35:47.837] | : . sysname = "Windows", release = "Server x64", version = "build 20348", [12:35:47.837] | : . nodename = "CRANWIN3", machine = "x86-64", login = "CRAN", user = "CRAN", [12:35:47.837] | : . effective_user = "CRAN", udomain = "CRANWIN3"), l10n = list(MBCS = TRUE, [12:35:47.837] | : . `UTF-8` = TRUE, `Latin-1` = FALSE, codepage = 65001L, system.codepage = 65001L), [12:35:47.837] | : . extSoftVersion = c(zlib = "1.3.1", bzlib = "1.0.8, 13-Jul-2019", [12:35:47.837] | : . xz = "5.8.1", libdeflate = "1.24", zstd = "1.5.7", PCRE = "10.45 2025-02-05", [12:35:47.837] | : . ICU = "77.1", TRE = "TRE 0.8.0 R_fixes (BSD)", iconv = "win_iconv", [12:35:47.837] | : . readline = "", BLAS = ""), pwd = "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests", [12:35:47.837] | : . tempdir = "D:\\temp\\2025_07_29_12_30_17_31216\\Rtmp0A02Uh", libs = c("D:/temp/2025_07_29_12_30_17_31216/RtmpU917xP/RLIBS_1bc403705485f", [12:35:47.837] | : . ..- attr(*, "class")= chr [1:5] "tweaked" "cluster" "multiprocess" "future" ... [12:35:47.837] | : . ..- attr(*, "init")= logi TRUE [12:35:47.837] | : . ..- attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [12:35:47.837] | : . earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [12:35:47.837] | : . .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [12:35:47.837] | : . ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [12:35:47.837] | : . ..- attr(*, "tweaks")=List of 1 [12:35:47.837] | : . .. ..$ workers:List of 1 [12:35:47.837] | : . .. .. ..$ :List of 4 [12:35:47.837] | : . .. .. .. ..$ con : 'sockconn' int 4 [12:35:47.837] | : . .. .. .. .. ..- attr(*, "conn_id")= [12:35:47.837] | : . .. .. .. ..$ host : chr "localhost" [12:35:47.837] | : . .. .. .. .. ..- attr(*, "localhost")= logi TRUE [12:35:47.837] | : . .. .. .. ..$ rank : int 0 [12:35:47.837] | : . .. .. .. ..$ session_info:List of 9 [12:35:47.837] | : . .. .. .. .. ..$ process :List of 1 [12:35:47.837] | : . .. .. .. .. .. ..$ pid: int 143648 [12:35:47.837] | : . .. .. .. .. ..$ r :List of 16 [12:35:47.837] | : . .. .. .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [12:35:47.837] | : . .. .. .. .. .. ..$ arch : chr "x86_64" [12:35:47.837] | : . .. .. .. .. .. ..$ os : chr "mingw32" [12:35:47.837] | : . .. .. .. .. .. ..$ crt : chr "ucrt" [12:35:47.837] | : . .. .. .. .. .. ..$ system : chr "x86_64, mingw32" [12:35:47.837] | : . .. .. .. .. .. ..$ status : chr "Under development (unstable)" [12:35:47.837] | : . .. .. .. .. .. ..$ major : chr "4" [12:35:47.837] | : . .. .. .. .. .. ..$ minor : chr "6.0" [12:35:47.837] | : . .. .. .. .. .. ..$ year : chr "2025" [12:35:47.837] | : . .. .. .. .. .. ..$ month : chr "07" [12:35:47.837] | : . .. .. .. .. .. ..$ day : chr "28" [12:35:47.837] | : . .. .. .. .. .. ..$ svn rev : chr "88462" [12:35:47.837] | : . .. .. .. .. .. ..$ language : chr "R" [12:35:47.837] | : . .. .. .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-07-28 r88462 ucrt)" [12:35:47.837] | : . .. .. .. .. .. ..$ nickname : chr "Unsuffered Consequences" [12:35:47.837] | : . .. .. .. .. .. ..$ os.type : chr "windows" [12:35:47.837] | : . .. .. .. .. ..$ system :List of 9 [12:35:47.837] | : . .. .. .. .. .. ..$ sysname : chr "Windows" [12:35:47.837] | : . .. .. .. .. .. ..$ release : chr "Server x64" [12:35:47.837] | : . .. .. .. .. .. ..$ version : chr "build 20348" [12:35:47.837] | : . .. .. .. .. .. ..$ nodename : chr "CRANWIN3" [12:35:47.837] | : . .. .. .. .. .. ..$ machine : chr "x86-64" [12:35:47.837] | : . .. .. .. .. .. ..$ login : chr "CRAN" [12:35:47.837] | : . .. .. .. .. .. ..$ user : chr "CRAN" [12:35:47.837] | : . .. .. .. .. .. ..$ effective_user: chr "CRAN" [12:35:47.837] | : . .. .. .. .. .. ..$ udomain : chr "CRANWIN3" [12:35:47.837] | : . .. .. .. .. ..$ l10n :List of 5 [12:35:47.837] | : . .. .. .. .. .. ..$ MBCS : logi TRUE [12:35:47.837] | : . .. .. .. .. .. ..$ UTF-8 : logi TRUE [12:35:47.837] | : . .. .. .. .. .. ..$ Latin-1 : logi FALSE [12:35:47.837] | : . .. .. .. .. .. ..$ codepage : int 65001 [12:35:47.837] | : . .. .. .. .. .. ..$ system.codepage: int 65001 [12:35:47.837] | : . .. .. .. .. ..$ extSoftVersion: Named chr [1:11] "1.3.1" "1.0.8, 13-Jul-2019" "5.8.1" "1.24" ... [12:35:47.837] | : . .. .. .. .. .. ..- attr(*, "names")= chr [1:11] "zlib" "bzlib" "xz" "libdeflate" ... [12:35:47.837] | : . .. .. .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [12:35:47.837] | : . .. .. .. .. ..$ tempdir : chr "D:\\temp\\2025_07_29_12_30_17_31216\\Rtmp0A02Uh" [12:35:47.837] | : . .. .. .. .. ..$ libs : chr [1:2] "D:/temp/2025_07_29_12_30_17_31216/RtmpU917xP/RLIBS_1bc403705485f" "D:/RCompile/recent/R/library" [12:35:47.837] | : . .. .. .. .. ..$ pkgs : NULL [12:35:47.837] | : . .. .. .. ..- attr(*, "options")=List of 35 [12:35:47.837] | : . .. .. .. .. ..$ worker : chr "localhost" [12:35:47.837] | : . .. .. .. .. .. ..- attr(*, "localhost")= logi TRUE [12:35:47.837] | : . .. .. .. .. ..$ master : chr "localhost" [12:35:47.837] | : . .. .. .. .. ..$ port : int 24138 [12:35:47.837] | : . .. .. .. .. ..$ connectTimeout : num 120 [12:35:47.837] | : . .. .. .. .. ..$ timeout : num 120 [12:35:47.837] | : . .. .. .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [12:35:47.837] | : . .. .. .. .. ..$ homogeneous : logi TRUE [12:35:47.837] | : . .. .. .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:95280:CRANWIN3:CRAN"| __truncated__ [12:35:47.837] | : . .. .. .. .. ..$ rscript_envs : NULL [12:35:47.837] | : . .. .. .. .. ..$ rscript_libs : NULL [12:35:47.837] | : . .. .. .. .. ..$ rscript_startup : NULL [12:35:47.837] | : . .. .. .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [12:35:47.837] | : . .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [12:35:47.837] | : . .. .. .. .. ..$ methods : logi TRUE [12:35:47.837] | : . .. .. .. .. ..$ socketOptions : chr "no-delay" [12:35:47.837] | : . .. .. .. .. ..$ useXDR : logi FALSE [12:35:47.837] | : . .. .. .. .. ..$ outfile : chr "/dev/null" [12:35:47.837] | : . .. .. .. .. ..$ renice : int NA [12:35:47.837] | : . .. .. .. .. ..$ rshcmd : NULL [12:35:47.837] | : . .. .. .. .. ..$ user : chr(0) [12:35:47.837] | : . .. .. .. .. ..$ revtunnel : logi FALSE [12:35:47.837] | : . .. .. .. .. ..$ rshlogfile : NULL [12:35:47.837] | : . .. .. .. .. ..$ rshopts : chr(0) [12:35:47.837] | : . .. .. .. .. ..$ rank : int 0 [12:35:47.837] | : . .. .. .. .. ..$ manual : logi FALSE [12:35:47.837] | : . .. .. .. .. ..$ dryrun : logi FALSE [12:35:47.837] | : . .. .. .. .. ..$ quiet : logi FALSE [12:35:47.837] | : . .. .. .. .. ..$ setup_strategy : chr "parallel" [12:35:47.837] | : . .. .. .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [12:35:47.837] | : . .. .. .. .. ..$ rshcmd_label : NULL [12:35:47.837] | : . .. .. .. .. ..$ rsh_call : NULL [12:35:47.837] | : . .. .. .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [12:35:47.837] | : . .. .. .. .. ..$ localMachine : logi TRUE [12:35:47.837] | : . .. .. .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [12:35:47.837] | : . master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [12:35:47.837] | : . 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [12:35:47.837] | : . 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [12:35:47.837] | : . rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [12:35:47.837] | : . "cmd", "sh", "none"), default_packages = c("datasets", "utils", [12:35:47.837] | : . "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [12:35:47.837] | : . socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [12:35:47.837] | : . "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [12:35:47.837] | : . FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [12:35:47.837] | : . NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [12:35:47.837] | : . NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [12:35:47.837] | : . setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [12:35:47.837] | : . "parallel"), calls = getOption2("parallelly.makeNodePSOCK.calls", [12:35:47.837] | : . FALSE), action = c("launch", "options"), verbose = FALSE) [12:35:47.837] | : . .. .. .. .. ..$ arguments :List of 29 [12:35:47.837] | : . .. .. .. .. .. ..$ worker : chr "localhost" [12:35:47.837] | : . .. .. .. .. .. ..$ master : NULL [12:35:47.837] | : . .. .. .. .. .. ..$ port : int 24138 [12:35:47.837] | : . .. .. .. .. .. ..$ connectTimeout : num 120 [12:35:47.837] | : . .. .. .. .. .. ..$ timeout : num 120 [12:35:47.837] | : . .. .. .. .. .. ..$ rscript : NULL [12:35:47.837] | : . .. .. .. .. .. ..$ homogeneous : NULL [12:35:47.837] | : . .. .. .. .. .. ..$ rscript_args : NULL [12:35:47.837] | : . .. .. .. .. .. ..$ rscript_envs : NULL [12:35:47.837] | : . .. .. .. .. .. ..$ rscript_libs : NULL [12:35:47.837] | : . .. .. .. .. .. ..$ rscript_startup : NULL [12:35:47.837] | : . .. .. .. .. .. ..$ rscript_sh : chr "auto" [12:35:47.837] | : . .. .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [12:35:47.837] | : . .. .. .. .. .. ..$ methods : logi TRUE [12:35:47.837] | : . .. .. .. .. .. ..$ socketOptions : chr "no-delay" [12:35:47.837] | : . .. .. .. .. .. ..$ useXDR : logi FALSE [12:35:47.837] | : . .. .. .. .. .. ..$ outfile : chr "/dev/null" [12:35:47.837] | : . .. .. .. .. .. ..$ renice : int NA [12:35:47.837] | : . .. .. .. .. .. ..$ rshcmd : NULL [12:35:47.837] | : . .. .. .. .. .. ..$ user : NULL [12:35:47.837] | : . .. .. .. .. .. ..$ revtunnel : logi NA [12:35:47.837] | : . .. .. .. .. .. ..$ rshlogfile : NULL [12:35:47.837] | : . .. .. .. .. .. ..$ rshopts : NULL [12:35:47.837] | : . .. .. .. .. .. ..$ rank : int 1 [12:35:47.837] | : . .. .. .. .. .. ..$ manual : logi FALSE [12:35:47.837] | : . .. .. .. .. .. ..$ dryrun : logi FALSE [12:35:47.837] | : . .. .. .. .. .. ..$ quiet : logi FALSE [12:35:47.837] | : . .. .. .. .. .. ..$ setup_strategy : chr "parallel" [12:35:47.837] | : . .. .. .. .. .. ..$ calls : logi FALSE [12:35:47.837] | : . .. .. .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [12:35:47.837] | : . .. .. .. ..- attr(*, "calls")=Dotted pair list of 16 [12:35:47.837] | : . .. .. .. .. ..$ : language future:::testme("tweak") [12:35:47.837] | : . .. .. .. .. ..$ : language source(file.path(path, "run.R")) [12:35:47.837] | : . .. .. .. .. ..$ : language withVisible(eval(ei, envir)) [12:35:47.837] | : . .. .. .. .. ..$ : language eval(ei, envir) [12:35:47.837] | : . .. .. .. .. ..$ : language eval(ei, envir) [12:35:47.837] | : . .. .. .. .. ..$ : language source(testme[["script"]], echo = TRUE) [12:35:47.837] | : . .. .. .. .. ..$ : language withVisible(eval(ei, envir)) [12:35:47.837] | : . .. .. .. .. ..$ : language eval(ei, envir) [12:35:47.837] | : . .. .. .. .. ..$ : language eval(ei, envir) [12:35:47.837] | : . .. .. .. .. ..$ : language local({ cl <- makeClusterPSOCK(1L) ... [12:35:47.837] | : . .. .. .. .. ..$ : language eval.parent(substitute(eval(quote(expr), envir))) [12:35:47.837] | : . .. .. .. .. ..$ : language eval(expr, p) [12:35:47.837] | : . .. .. .. .. ..$ : language eval(expr, p) [12:35:47.837] | : . .. .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [12:35:47.837] | : . .. .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [12:35:47.837] | : . .. .. .. .. ..$ : language makeClusterPSOCK(1L) [12:35:47.837] | : . .. .. .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [12:35:47.837] | : . .. .. ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [12:35:47.837] | : . ..- attr(*, "call")= language future::plan(future::cluster, workers = cl) [12:35:47.837] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:47.910] | : . Old stack: [12:35:47.910] | : . List of 1 [12:35:47.910] | : . $ :function (..., envir = parent.frame()) [12:35:47.910] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:47.910] | : . ..- attr(*, "init")= logi TRUE [12:35:47.910] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:47.910] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:47.910] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:47.910] | : . ..- attr(*, "call")= language plan(sequential) [12:35:47.910] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:47.914] | : . Not identical [12:35:47.914] | : . all.equal() for future ... [12:35:47.915] | : . ' List of 2 [12:35:47.915] | : . ' $ target :function (..., workers = list(list(con = 4L, host = "localhost", rank = 0L, [12:35:47.915] | : . ' session_info = list(process = list(pid = 143648L), r = list(platform = "x86_64-w64-mingw32", [12:35:47.915] | : . ' arch = "x86_64", os = "mingw32", crt = "ucrt", system = "x86_64, mingw32", [12:35:47.915] | : . ' status = "Under development (unstable)", major = "4", minor = "6.0", [12:35:47.915] | : . ' year = "2025", month = "07", day = "28", `svn rev` = "88462", language = "R", [12:35:47.915] | : . ' version.string = "R Under development (unstable) (2025-07-28 r88462 ucrt)", [12:35:47.915] | : . ' nickname = "Unsuffered Consequences", os.type = "windows"), system = list( [12:35:47.915] | : . ' sysname = "Windows", release = "Server x64", version = "build 20348", [12:35:47.915] | : . ' nodename = "CRANWIN3", machine = "x86-64", login = "CRAN", user = "CRAN", [12:35:47.915] | : . ' effective_user = "CRAN", udomain = "CRANWIN3"), l10n = list(MBCS = TRUE, [12:35:47.915] | : . ' `UTF-8` = TRUE, `Latin-1` = FALSE, codepage = 65001L, system.codepage = 65001L), [12:35:47.915] | : . ' extSoftVersion = c(zlib = "1.3.1", bzlib = "1.0.8, 13-Jul-2019", [12:35:47.915] | : . ' xz = "5.8.1", libdeflate = "1.24", zstd = "1.5.7", PCRE = "10.45 2025-02-05", [12:35:47.915] | : . ' ICU = "77.1", TRE = "TRE 0.8.0 R_fixes (BSD)", iconv = "win_iconv", [12:35:47.915] | : . ' readline = "", BLAS = ""), pwd = "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests", [12:35:47.915] | : . ' tempdir = "D:\\temp\\2025_07_29_12_30_17_31216\\Rtmp0A02Uh", libs = c("D:/temp/2025_07_29_12_30_17_31216/RtmpU917xP/RLIBS_1bc403705485f", [12:35:47.915] | : . ' ..- attr(*, "class")= chr [1:5] "tweaked" "cluster" "multiprocess" "future" ... [12:35:47.915] | : . ' ..- attr(*, "init")= logi TRUE [12:35:47.915] | : . ' ..- attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [12:35:47.915] | : . ' earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [12:35:47.915] | : . ' .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [12:35:47.915] | : . ' ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [12:35:47.915] | : . ' ..- attr(*, "tweaks")=List of 1 [12:35:47.915] | : . ' .. ..$ workers:List of 1 [12:35:47.915] | : . ' .. .. ..$ :List of 4 [12:35:47.915] | : . ' .. .. .. ..$ con : 'sockconn' int 4 [12:35:47.915] | : . ' .. .. .. .. ..- attr(*, "conn_id")= [12:35:47.915] | : . ' .. .. .. ..$ host : chr "localhost" [12:35:47.915] | : . ' .. .. .. .. ..- attr(*, "localhost")= logi TRUE [12:35:47.915] | : . ' .. .. .. ..$ rank : int 0 [12:35:47.915] | : . ' .. .. .. ..$ session_info:List of 9 [12:35:47.915] | : . ' .. .. .. .. ..$ process :List of 1 [12:35:47.915] | : . ' .. .. .. .. .. ..$ pid: int 143648 [12:35:47.915] | : . ' .. .. .. .. ..$ r :List of 16 [12:35:47.915] | : . ' .. .. .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [12:35:47.915] | : . ' .. .. .. .. .. ..$ arch : chr "x86_64" [12:35:47.915] | : . ' .. .. .. .. .. ..$ os : chr "mingw32" [12:35:47.915] | : . ' .. .. .. .. .. ..$ crt : chr "ucrt" [12:35:47.915] | : . ' .. .. .. .. .. ..$ system : chr "x86_64, mingw32" [12:35:47.915] | : . ' .. .. .. .. .. ..$ status : chr "Under development (unstable)" [12:35:47.915] | : . ' .. .. .. .. .. ..$ major : chr "4" [12:35:47.915] | : . ' .. .. .. .. .. ..$ minor : chr "6.0" [12:35:47.915] | : . ' .. .. .. .. .. ..$ year : chr "2025" [12:35:47.915] | : . ' .. .. .. .. .. ..$ month : chr "07" [12:35:47.915] | : . ' .. .. .. .. .. ..$ day : chr "28" [12:35:47.915] | : . ' .. .. .. .. .. ..$ svn rev : chr "88462" [12:35:47.915] | : . ' .. .. .. .. .. ..$ language : chr "R" [12:35:47.915] | : . ' .. .. .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-07-28 r88462 ucrt)" [12:35:47.915] | : . ' .. .. .. .. .. ..$ nickname : chr "Unsuffered Consequences" [12:35:47.915] | : . ' .. .. .. .. .. ..$ os.type : chr "windows" [12:35:47.915] | : . ' .. .. .. .. ..$ system :List of 9 [12:35:47.915] | : . ' .. .. .. .. .. ..$ sysname : chr "Windows" [12:35:47.915] | : . ' .. .. .. .. .. ..$ release : chr "Server x64" [12:35:47.915] | : . ' .. .. .. .. .. ..$ version : chr "build 20348" [12:35:47.915] | : . ' .. .. .. .. .. ..$ nodename : chr "CRANWIN3" [12:35:47.915] | : . ' .. .. .. .. .. ..$ machine : chr "x86-64" [12:35:47.915] | : . ' .. .. .. .. .. ..$ login : chr "CRAN" [12:35:47.915] | : . ' .. .. .. .. .. ..$ user : chr "CRAN" [12:35:47.915] | : . ' .. .. .. .. .. ..$ effective_user: chr "CRAN" [12:35:47.915] | : . ' .. .. .. .. .. ..$ udomain : chr "CRANWIN3" [12:35:47.915] | : . ' .. .. .. .. ..$ l10n :List of 5 [12:35:47.915] | : . ' .. .. .. .. .. ..$ MBCS : logi TRUE [12:35:47.915] | : . ' .. .. .. .. .. ..$ UTF-8 : logi TRUE [12:35:47.915] | : . ' .. .. .. .. .. ..$ Latin-1 : logi FALSE [12:35:47.915] | : . ' .. .. .. .. .. ..$ codepage : int 65001 [12:35:47.915] | : . ' .. .. .. .. .. ..$ system.codepage: int 65001 [12:35:47.915] | : . ' .. .. .. .. ..$ extSoftVersion: Named chr [1:11] "1.3.1" "1.0.8, 13-Jul-2019" "5.8.1" "1.24" ... [12:35:47.915] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:11] "zlib" "bzlib" "xz" "libdeflate" ... [12:35:47.915] | : . ' .. .. .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [12:35:47.915] | : . ' .. .. .. .. ..$ tempdir : chr "D:\\temp\\2025_07_29_12_30_17_31216\\Rtmp0A02Uh" [12:35:47.915] | : . ' .. .. .. .. ..$ libs : chr [1:2] "D:/temp/2025_07_29_12_30_17_31216/RtmpU917xP/RLIBS_1bc403705485f" "D:/RCompile/recent/R/library" [12:35:47.915] | : . ' .. .. .. .. ..$ pkgs : NULL [12:35:47.915] | : . ' .. .. .. ..- attr(*, "options")=List of 35 [12:35:47.915] | : . ' .. .. .. .. ..$ worker : chr "localhost" [12:35:47.915] | : . ' .. .. .. .. .. ..- attr(*, "localhost")= logi TRUE [12:35:47.915] | : . ' .. .. .. .. ..$ master : chr "localhost" [12:35:47.915] | : . ' .. .. .. .. ..$ port : int 24138 [12:35:47.915] | : . ' .. .. .. .. ..$ connectTimeout : num 120 [12:35:47.915] | : . ' .. .. .. .. ..$ timeout : num 120 [12:35:47.915] | : . ' .. .. .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [12:35:47.915] | : . ' .. .. .. .. ..$ homogeneous : logi TRUE [12:35:47.915] | : . ' .. .. .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:95280:CRANWIN3:CRAN"| __truncated__ [12:35:47.915] | : . ' .. .. .. .. ..$ rscript_envs : NULL [12:35:47.915] | : . ' .. .. .. .. ..$ rscript_libs : NULL [12:35:47.915] | : . ' .. .. .. .. ..$ rscript_startup : NULL [12:35:47.915] | : . ' .. .. .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [12:35:47.915] | : . ' .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [12:35:47.915] | : . ' .. .. .. .. ..$ methods : logi TRUE [12:35:47.915] | : . ' .. .. .. .. ..$ socketOptions : chr "no-delay" [12:35:47.915] | : . ' .. .. .. .. ..$ useXDR : logi FALSE [12:35:47.915] | : . ' .. .. .. .. ..$ outfile : chr "/dev/null" [12:35:47.915] | : . ' .. .. .. .. ..$ renice : int NA [12:35:47.915] | : . ' .. .. .. .. ..$ rshcmd : NULL [12:35:47.915] | : . ' .. .. .. .. ..$ user : chr(0) [12:35:47.915] | : . ' .. .. .. .. ..$ revtunnel : logi FALSE [12:35:47.915] | : . ' .. .. .. .. ..$ rshlogfile : NULL [12:35:47.915] | : . ' .. .. .. .. ..$ rshopts : chr(0) [12:35:47.915] | : . ' .. .. .. .. ..$ rank : int 0 [12:35:47.915] | : . ' .. .. .. .. ..$ manual : logi FALSE [12:35:47.915] | : . ' .. .. .. .. ..$ dryrun : logi FALSE [12:35:47.915] | : . ' .. .. .. .. ..$ quiet : logi FALSE [12:35:47.915] | : . ' .. .. .. .. ..$ setup_strategy : chr "parallel" [12:35:47.915] | : . ' .. .. .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [12:35:47.915] | : . ' .. .. .. .. ..$ rshcmd_label : NULL [12:35:47.915] | : . ' .. .. .. .. ..$ rsh_call : NULL [12:35:47.915] | : . ' .. .. .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [12:35:47.915] | : . ' .. .. .. .. ..$ localMachine : logi TRUE [12:35:47.915] | : . ' .. .. .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [12:35:47.915] | : . ' master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [12:35:47.915] | : . ' 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [12:35:47.915] | : . ' 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [12:35:47.915] | : . ' rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [12:35:47.915] | : . ' "cmd", "sh", "none"), default_packages = c("datasets", "utils", [12:35:47.915] | : . ' "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [12:35:47.915] | : . ' socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [12:35:47.915] | : . ' "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [12:35:47.915] | : . ' FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [12:35:47.915] | : . ' NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [12:35:47.915] | : . ' NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [12:35:47.915] | : . ' setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [12:35:47.915] | : . ' "parallel"), calls = getOption2("parallelly.makeNodePSOCK.calls", [12:35:47.915] | : . ' FALSE), action = c("launch", "options"), verbose = FALSE) [12:35:47.915] | : . ' .. .. .. .. ..$ arguments :List of 29 [12:35:47.915] | : . ' .. .. .. .. .. ..$ worker : chr "localhost" [12:35:47.915] | : . ' .. .. .. .. .. ..$ master : NULL [12:35:47.915] | : . ' .. .. .. .. .. ..$ port : int 24138 [12:35:47.915] | : . ' .. .. .. .. .. ..$ connectTimeout : num 120 [12:35:47.915] | : . ' .. .. .. .. .. ..$ timeout : num 120 [12:35:47.915] | : . ' .. .. .. .. .. ..$ rscript : NULL [12:35:47.915] | : . ' .. .. .. .. .. ..$ homogeneous : NULL [12:35:47.915] | : . ' .. .. .. .. .. ..$ rscript_args : NULL [12:35:47.915] | : . ' .. .. .. .. .. ..$ rscript_envs : NULL [12:35:47.915] | : . ' .. .. .. .. .. ..$ rscript_libs : NULL [12:35:47.915] | : . ' .. .. .. .. .. ..$ rscript_startup : NULL [12:35:47.915] | : . ' .. .. .. .. .. ..$ rscript_sh : chr "auto" [12:35:47.915] | : . ' .. .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [12:35:47.915] | : . ' .. .. .. .. .. ..$ methods : logi TRUE [12:35:47.915] | : . ' .. .. .. .. .. ..$ socketOptions : chr "no-delay" [12:35:47.915] | : . ' .. .. .. .. .. ..$ useXDR : logi FALSE [12:35:47.915] | : . ' .. .. .. .. .. ..$ outfile : chr "/dev/null" [12:35:47.915] | : . ' .. .. .. .. .. ..$ renice : int NA [12:35:47.915] | : . ' .. .. .. .. .. ..$ rshcmd : NULL [12:35:47.915] | : . ' .. .. .. .. .. ..$ user : NULL [12:35:47.915] | : . ' .. .. .. .. .. ..$ revtunnel : logi NA [12:35:47.915] | : . ' .. .. .. .. .. ..$ rshlogfile : NULL [12:35:47.915] | : . ' .. .. .. .. .. ..$ rshopts : NULL [12:35:47.915] | : . ' .. .. .. .. .. ..$ rank : int 1 [12:35:47.915] | : . ' .. .. .. .. .. ..$ manual : logi FALSE [12:35:47.915] | : . ' .. .. .. .. .. ..$ dryrun : logi FALSE [12:35:47.915] | : . ' .. .. .. .. .. ..$ quiet : logi FALSE [12:35:47.915] | : . ' .. .. .. .. .. ..$ setup_strategy : chr "parallel" [12:35:47.915] | : . ' .. .. .. .. .. ..$ calls : logi FALSE [12:35:47.915] | : . ' .. .. .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [12:35:47.915] | : . ' .. .. .. ..- attr(*, "calls")=Dotted pair list of 16 [12:35:47.915] | : . ' .. .. .. .. ..$ : language future:::testme("tweak") [12:35:47.915] | : . ' .. .. .. .. ..$ : language source(file.path(path, "run.R")) [12:35:47.915] | : . ' .. .. .. .. ..$ : language withVisible(eval(ei, envir)) [12:35:47.915] | : . ' .. .. .. .. ..$ : language eval(ei, envir) [12:35:47.915] | : . ' .. .. .. .. ..$ : language eval(ei, envir) [12:35:47.915] | : . ' .. .. .. .. ..$ : language source(testme[["script"]], echo = TRUE) [12:35:47.915] | : . ' .. .. .. .. ..$ : language withVisible(eval(ei, envir)) [12:35:47.915] | : . ' .. .. .. .. ..$ : language eval(ei, envir) [12:35:47.915] | : . ' .. .. .. .. ..$ : language eval(ei, envir) [12:35:47.915] | : . ' .. .. .. .. ..$ : language local({ cl <- makeClusterPSOCK(1L) ... [12:35:47.915] | : . ' .. .. .. .. ..$ : language eval.parent(substitute(eval(quote(expr), envir))) [12:35:47.915] | : . ' .. .. .. .. ..$ : language eval(expr, p) [12:35:47.915] | : . ' .. .. .. .. ..$ : language eval(expr, p) [12:35:47.915] | : . ' .. .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [12:35:47.915] | : . ' .. .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [12:35:47.915] | : . ' .. .. .. .. ..$ : language makeClusterPSOCK(1L) [12:35:47.915] | : . ' .. .. .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [12:35:47.915] | : . ' .. .. ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [12:35:47.915] | : . ' ..- attr(*, "call")= language future::plan(future::cluster, workers = cl) [12:35:47.915] | : . ' $ current:function (..., envir = parent.frame()) [12:35:47.915] | : . ' ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:47.915] | : . ' ..- attr(*, "init")= logi TRUE [12:35:47.915] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:47.915] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:47.915] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:47.915] | : . ' ..- attr(*, "call")= language plan(sequential) [12:35:48.001] | : . ' Formals differ [12:35:48.001] | : . all.equal() for future ... done [12:35:48.002] | : . Future strategies differ at level 1 [12:35:48.002] | : all.equal() for FutureStrategyList ... done [12:35:48.002] | : plan(): Setting new future backend stack: [12:35:48.003] | : List of future strategies: [12:35:48.003] | : 1. cluster: [12:35:48.003] | : - args: function (..., workers = "") [12:35:48.003] | : - tweaked: TRUE [12:35:48.003] | : - call: future::plan(future::cluster, workers = cl) [12:35:48.008] | : List of 1 [12:35:48.008] | : $ :function (..., workers = list(list(con = 4L, host = "localhost", rank = 0L, [12:35:48.008] | : session_info = list(process = list(pid = 143648L), r = list(platform = "x86_64-w64-mingw32", [12:35:48.008] | : arch = "x86_64", os = "mingw32", crt = "ucrt", system = "x86_64, mingw32", [12:35:48.008] | : status = "Under development (unstable)", major = "4", minor = "6.0", [12:35:48.008] | : year = "2025", month = "07", day = "28", `svn rev` = "88462", language = "R", [12:35:48.008] | : version.string = "R Under development (unstable) (2025-07-28 r88462 ucrt)", [12:35:48.008] | : nickname = "Unsuffered Consequences", os.type = "windows"), system = list( [12:35:48.008] | : sysname = "Windows", release = "Server x64", version = "build 20348", [12:35:48.008] | : nodename = "CRANWIN3", machine = "x86-64", login = "CRAN", user = "CRAN", [12:35:48.008] | : effective_user = "CRAN", udomain = "CRANWIN3"), l10n = list(MBCS = TRUE, [12:35:48.008] | : `UTF-8` = TRUE, `Latin-1` = FALSE, codepage = 65001L, system.codepage = 65001L), [12:35:48.008] | : extSoftVersion = c(zlib = "1.3.1", bzlib = "1.0.8, 13-Jul-2019", [12:35:48.008] | : xz = "5.8.1", libdeflate = "1.24", zstd = "1.5.7", PCRE = "10.45 2025-02-05", [12:35:48.008] | : ICU = "77.1", TRE = "TRE 0.8.0 R_fixes (BSD)", iconv = "win_iconv", [12:35:48.008] | : readline = "", BLAS = ""), pwd = "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests", [12:35:48.008] | : tempdir = "D:\\temp\\2025_07_29_12_30_17_31216\\Rtmp0A02Uh", libs = c("D:/temp/2025_07_29_12_30_17_31216/RtmpU917xP/RLIBS_1bc403705485f", [12:35:48.008] | : ..- attr(*, "class")= chr [1:5] "tweaked" "cluster" "multiprocess" "future" ... [12:35:48.008] | : ..- attr(*, "init")= logi TRUE [12:35:48.008] | : ..- attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [12:35:48.008] | : earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [12:35:48.008] | : .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [12:35:48.008] | : ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [12:35:48.008] | : ..- attr(*, "tweaks")=List of 1 [12:35:48.008] | : .. ..$ workers:List of 1 [12:35:48.008] | : .. .. ..$ :List of 4 [12:35:48.008] | : .. .. .. ..$ con : 'sockconn' int 4 [12:35:48.008] | : .. .. .. .. ..- attr(*, "conn_id")= [12:35:48.008] | : .. .. .. ..$ host : chr "localhost" [12:35:48.008] | : .. .. .. .. ..- attr(*, "localhost")= logi TRUE [12:35:48.008] | : .. .. .. ..$ rank : int 0 [12:35:48.008] | : .. .. .. ..$ session_info:List of 9 [12:35:48.008] | : .. .. .. .. ..$ process :List of 1 [12:35:48.008] | : .. .. .. .. .. ..$ pid: int 143648 [12:35:48.008] | : .. .. .. .. ..$ r :List of 16 [12:35:48.008] | : .. .. .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [12:35:48.008] | : .. .. .. .. .. ..$ arch : chr "x86_64" [12:35:48.008] | : .. .. .. .. .. ..$ os : chr "mingw32" [12:35:48.008] | : .. .. .. .. .. ..$ crt : chr "ucrt" [12:35:48.008] | : .. .. .. .. .. ..$ system : chr "x86_64, mingw32" [12:35:48.008] | : .. .. .. .. .. ..$ status : chr "Under development (unstable)" [12:35:48.008] | : .. .. .. .. .. ..$ major : chr "4" [12:35:48.008] | : .. .. .. .. .. ..$ minor : chr "6.0" [12:35:48.008] | : .. .. .. .. .. ..$ year : chr "2025" [12:35:48.008] | : .. .. .. .. .. ..$ month : chr "07" [12:35:48.008] | : .. .. .. .. .. ..$ day : chr "28" [12:35:48.008] | : .. .. .. .. .. ..$ svn rev : chr "88462" [12:35:48.008] | : .. .. .. .. .. ..$ language : chr "R" [12:35:48.008] | : .. .. .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-07-28 r88462 ucrt)" [12:35:48.008] | : .. .. .. .. .. ..$ nickname : chr "Unsuffered Consequences" [12:35:48.008] | : .. .. .. .. .. ..$ os.type : chr "windows" [12:35:48.008] | : .. .. .. .. ..$ system :List of 9 [12:35:48.008] | : .. .. .. .. .. ..$ sysname : chr "Windows" [12:35:48.008] | : .. .. .. .. .. ..$ release : chr "Server x64" [12:35:48.008] | : .. .. .. .. .. ..$ version : chr "build 20348" [12:35:48.008] | : .. .. .. .. .. ..$ nodename : chr "CRANWIN3" [12:35:48.008] | : .. .. .. .. .. ..$ machine : chr "x86-64" [12:35:48.008] | : .. .. .. .. .. ..$ login : chr "CRAN" [12:35:48.008] | : .. .. .. .. .. ..$ user : chr "CRAN" [12:35:48.008] | : .. .. .. .. .. ..$ effective_user: chr "CRAN" [12:35:48.008] | : .. .. .. .. .. ..$ udomain : chr "CRANWIN3" [12:35:48.008] | : .. .. .. .. ..$ l10n :List of 5 [12:35:48.008] | : .. .. .. .. .. ..$ MBCS : logi TRUE [12:35:48.008] | : .. .. .. .. .. ..$ UTF-8 : logi TRUE [12:35:48.008] | : .. .. .. .. .. ..$ Latin-1 : logi FALSE [12:35:48.008] | : .. .. .. .. .. ..$ codepage : int 65001 [12:35:48.008] | : .. .. .. .. .. ..$ system.codepage: int 65001 [12:35:48.008] | : .. .. .. .. ..$ extSoftVersion: Named chr [1:11] "1.3.1" "1.0.8, 13-Jul-2019" "5.8.1" "1.24" ... [12:35:48.008] | : .. .. .. .. .. ..- attr(*, "names")= chr [1:11] "zlib" "bzlib" "xz" "libdeflate" ... [12:35:48.008] | : .. .. .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [12:35:48.008] | : .. .. .. .. ..$ tempdir : chr "D:\\temp\\2025_07_29_12_30_17_31216\\Rtmp0A02Uh" [12:35:48.008] | : .. .. .. .. ..$ libs : chr [1:2] "D:/temp/2025_07_29_12_30_17_31216/RtmpU917xP/RLIBS_1bc403705485f" "D:/RCompile/recent/R/library" [12:35:48.008] | : .. .. .. .. ..$ pkgs : NULL [12:35:48.008] | : .. .. .. ..- attr(*, "options")=List of 35 [12:35:48.008] | : .. .. .. .. ..$ worker : chr "localhost" [12:35:48.008] | : .. .. .. .. .. ..- attr(*, "localhost")= logi TRUE [12:35:48.008] | : .. .. .. .. ..$ master : chr "localhost" [12:35:48.008] | : .. .. .. .. ..$ port : int 24138 [12:35:48.008] | : .. .. .. .. ..$ connectTimeout : num 120 [12:35:48.008] | : .. .. .. .. ..$ timeout : num 120 [12:35:48.008] | : .. .. .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [12:35:48.008] | : .. .. .. .. ..$ homogeneous : logi TRUE [12:35:48.008] | : .. .. .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:95280:CRANWIN3:CRAN"| __truncated__ [12:35:48.008] | : .. .. .. .. ..$ rscript_envs : NULL [12:35:48.008] | : .. .. .. .. ..$ rscript_libs : NULL [12:35:48.008] | : .. .. .. .. ..$ rscript_startup : NULL [12:35:48.008] | : .. .. .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [12:35:48.008] | : .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [12:35:48.008] | : .. .. .. .. ..$ methods : logi TRUE [12:35:48.008] | : .. .. .. .. ..$ socketOptions : chr "no-delay" [12:35:48.008] | : .. .. .. .. ..$ useXDR : logi FALSE [12:35:48.008] | : .. .. .. .. ..$ outfile : chr "/dev/null" [12:35:48.008] | : .. .. .. .. ..$ renice : int NA [12:35:48.008] | : .. .. .. .. ..$ rshcmd : NULL [12:35:48.008] | : .. .. .. .. ..$ user : chr(0) [12:35:48.008] | : .. .. .. .. ..$ revtunnel : logi FALSE [12:35:48.008] | : .. .. .. .. ..$ rshlogfile : NULL [12:35:48.008] | : .. .. .. .. ..$ rshopts : chr(0) [12:35:48.008] | : .. .. .. .. ..$ rank : int 0 [12:35:48.008] | : .. .. .. .. ..$ manual : logi FALSE [12:35:48.008] | : .. .. .. .. ..$ dryrun : logi FALSE [12:35:48.008] | : .. .. .. .. ..$ quiet : logi FALSE [12:35:48.008] | : .. .. .. .. ..$ setup_strategy : chr "parallel" [12:35:48.008] | : .. .. .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [12:35:48.008] | : .. .. .. .. ..$ rshcmd_label : NULL [12:35:48.008] | : .. .. .. .. ..$ rsh_call : NULL [12:35:48.008] | : .. .. .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [12:35:48.008] | : .. .. .. .. ..$ localMachine : logi TRUE [12:35:48.008] | : .. .. .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [12:35:48.008] | : master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [12:35:48.008] | : 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [12:35:48.008] | : 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [12:35:48.008] | : rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [12:35:48.008] | : "cmd", "sh", "none"), default_packages = c("datasets", "utils", [12:35:48.008] | : "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [12:35:48.008] | : socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [12:35:48.008] | : "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [12:35:48.008] | : FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [12:35:48.008] | : NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [12:35:48.008] | : NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [12:35:48.008] | : setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [12:35:48.008] | : "parallel"), calls = getOption2("parallelly.makeNodePSOCK.calls", [12:35:48.008] | : FALSE), action = c("launch", "options"), verbose = FALSE) [12:35:48.008] | : .. .. .. .. ..$ arguments :List of 29 [12:35:48.008] | : .. .. .. .. .. ..$ worker : chr "localhost" [12:35:48.008] | : .. .. .. .. .. ..$ master : NULL [12:35:48.008] | : .. .. .. .. .. ..$ port : int 24138 [12:35:48.008] | : .. .. .. .. .. ..$ connectTimeout : num 120 [12:35:48.008] | : .. .. .. .. .. ..$ timeout : num 120 [12:35:48.008] | : .. .. .. .. .. ..$ rscript : NULL [12:35:48.008] | : .. .. .. .. .. ..$ homogeneous : NULL [12:35:48.008] | : .. .. .. .. .. ..$ rscript_args : NULL [12:35:48.008] | : .. .. .. .. .. ..$ rscript_envs : NULL [12:35:48.008] | : .. .. .. .. .. ..$ rscript_libs : NULL [12:35:48.008] | : .. .. .. .. .. ..$ rscript_startup : NULL [12:35:48.008] | : .. .. .. .. .. ..$ rscript_sh : chr "auto" [12:35:48.008] | : .. .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [12:35:48.008] | : .. .. .. .. .. ..$ methods : logi TRUE [12:35:48.008] | : .. .. .. .. .. ..$ socketOptions : chr "no-delay" [12:35:48.008] | : .. .. .. .. .. ..$ useXDR : logi FALSE [12:35:48.008] | : .. .. .. .. .. ..$ outfile : chr "/dev/null" [12:35:48.008] | : .. .. .. .. .. ..$ renice : int NA [12:35:48.008] | : .. .. .. .. .. ..$ rshcmd : NULL [12:35:48.008] | : .. .. .. .. .. ..$ user : NULL [12:35:48.008] | : .. .. .. .. .. ..$ revtunnel : logi NA [12:35:48.008] | : .. .. .. .. .. ..$ rshlogfile : NULL [12:35:48.008] | : .. .. .. .. .. ..$ rshopts : NULL [12:35:48.008] | : .. .. .. .. .. ..$ rank : int 1 [12:35:48.008] | : .. .. .. .. .. ..$ manual : logi FALSE [12:35:48.008] | : .. .. .. .. .. ..$ dryrun : logi FALSE [12:35:48.008] | : .. .. .. .. .. ..$ quiet : logi FALSE [12:35:48.008] | : .. .. .. .. .. ..$ setup_strategy : chr "parallel" [12:35:48.008] | : .. .. .. .. .. ..$ calls : logi FALSE [12:35:48.008] | : .. .. .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [12:35:48.008] | : .. .. .. ..- attr(*, "calls")=Dotted pair list of 16 [12:35:48.008] | : .. .. .. .. ..$ : language future:::testme("tweak") [12:35:48.008] | : .. .. .. .. ..$ : language source(file.path(path, "run.R")) [12:35:48.008] | : .. .. .. .. ..$ : language withVisible(eval(ei, envir)) [12:35:48.008] | : .. .. .. .. ..$ : language eval(ei, envir) [12:35:48.008] | : .. .. .. .. ..$ : language eval(ei, envir) [12:35:48.008] | : .. .. .. .. ..$ : language source(testme[["script"]], echo = TRUE) [12:35:48.008] | : .. .. .. .. ..$ : language withVisible(eval(ei, envir)) [12:35:48.008] | : .. .. .. .. ..$ : language eval(ei, envir) [12:35:48.008] | : .. .. .. .. ..$ : language eval(ei, envir) [12:35:48.008] | : .. .. .. .. ..$ : language local({ cl <- makeClusterPSOCK(1L) ... [12:35:48.008] | : .. .. .. .. ..$ : language eval.parent(substitute(eval(quote(expr), envir))) [12:35:48.008] | : .. .. .. .. ..$ : language eval(expr, p) [12:35:48.008] | : .. .. .. .. ..$ : language eval(expr, p) [12:35:48.008] | : .. .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [12:35:48.008] | : .. .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [12:35:48.008] | : .. .. .. .. ..$ : language makeClusterPSOCK(1L) [12:35:48.008] | : .. .. .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [12:35:48.008] | : .. .. ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [12:35:48.008] | : ..- attr(*, "call")= language future::plan(future::cluster, workers = cl) [12:35:48.008] | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:48.095] | : plan(): plan_cleanup(<'sequential', 'uniprocess', 'future', 'function'>, cleanup = NA) ... [12:35:48.095] | : . plan("next", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:48.095] | : . ' Getting current ("next") strategy: 'FutureStrategy', 'sequential', 'uniprocess', 'future', 'function' [12:35:48.096] | : . plan("next", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:48.096] | : . Legacy shutdown of cluster workers ... [12:35:48.097] | : . ' Stopping existing cluster ... [12:35:48.097] | : . ' , No pre-existing cluster. Skipping [12:35:48.097] | : . ' Stopping existing cluster ... done [12:35:48.097] | : . Legacy shutdown of cluster workers ... done [12:35:48.098] | : plan(): plan_cleanup(<'sequential', 'uniprocess', 'future', 'function'>, cleanup = NA) ... done [12:35:48.098] | : plan(): plan_init() of 'tweaked', 'cluster', 'multiprocess', 'future', 'function' ... [12:35:48.098] | : . function (..., workers = list(list(con = 4L, host = "localhost", rank = 0L, [12:35:48.098] | : . session_info = list(process = list(pid = 143648L), r = list(platform = "x86_64-w64-mingw32", [12:35:48.098] | : . arch = "x86_64", os = "mingw32", crt = "ucrt", system = "x86_64, mingw32", [12:35:48.098] | : . status = "Under development (unstable)", major = "4", minor = "6.0", [12:35:48.098] | : . year = "2025", month = "07", day = "28", `svn rev` = "88462", language = "R", [12:35:48.098] | : . version.string = "R Under development (unstable) (2025-07-28 r88462 ucrt)", [12:35:48.098] | : . nickname = "Unsuffered Consequences", os.type = "windows"), system = list( [12:35:48.098] | : . sysname = "Windows", release = "Server x64", version = "build 20348", [12:35:48.098] | : . nodename = "CRANWIN3", machine = "x86-64", login = "CRAN", user = "CRAN", [12:35:48.098] | : . effective_user = "CRAN", udomain = "CRANWIN3"), l10n = list(MBCS = TRUE, [12:35:48.098] | : . `UTF-8` = TRUE, `Latin-1` = FALSE, codepage = 65001L, system.codepage = 65001L), [12:35:48.098] | : . extSoftVersion = c(zlib = "1.3.1", bzlib = "1.0.8, 13-Jul-2019", [12:35:48.098] | : . xz = "5.8.1", libdeflate = "1.24", zstd = "1.5.7", PCRE = "10.45 2025-02-05", [12:35:48.098] | : . ICU = "77.1", TRE = "TRE 0.8.0 R_fixes (BSD)", iconv = "win_iconv", [12:35:48.098] | : . readline = "", BLAS = ""), pwd = "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests", [12:35:48.098] | : . tempdir = "D:\\temp\\2025_07_29_12_30_17_31216\\Rtmp0A02Uh", libs = c("D:/temp/2025_07_29_12_30_17_31216/RtmpU917xP/RLIBS_1bc403705485f", [12:35:48.098] | : . - attr(*, "class")= chr [1:5] "tweaked" "cluster" "multiprocess" "future" ... [12:35:48.098] | : . - attr(*, "init")= logi TRUE [12:35:48.098] | : . - attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [12:35:48.098] | : . earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [12:35:48.098] | : . ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [12:35:48.098] | : . - attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [12:35:48.098] | : . - attr(*, "tweaks")=List of 1 [12:35:48.098] | : . ..$ workers:List of 1 [12:35:48.098] | : . .. ..$ :List of 4 [12:35:48.098] | : . .. .. ..$ con : 'sockconn' int 4 [12:35:48.098] | : . .. .. .. ..- attr(*, "conn_id")= [12:35:48.098] | : . .. .. ..$ host : chr "localhost" [12:35:48.098] | : . .. .. .. ..- attr(*, "localhost")= logi TRUE [12:35:48.098] | : . .. .. ..$ rank : int 0 [12:35:48.098] | : . .. .. ..$ session_info:List of 9 [12:35:48.098] | : . .. .. .. ..$ process :List of 1 [12:35:48.098] | : . .. .. .. .. ..$ pid: int 143648 [12:35:48.098] | : . .. .. .. ..$ r :List of 16 [12:35:48.098] | : . .. .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [12:35:48.098] | : . .. .. .. .. ..$ arch : chr "x86_64" [12:35:48.098] | : . .. .. .. .. ..$ os : chr "mingw32" [12:35:48.098] | : . .. .. .. .. ..$ crt : chr "ucrt" [12:35:48.098] | : . .. .. .. .. ..$ system : chr "x86_64, mingw32" [12:35:48.098] | : . .. .. .. .. ..$ status : chr "Under development (unstable)" [12:35:48.098] | : . .. .. .. .. ..$ major : chr "4" [12:35:48.098] | : . .. .. .. .. ..$ minor : chr "6.0" [12:35:48.098] | : . .. .. .. .. ..$ year : chr "2025" [12:35:48.098] | : . .. .. .. .. ..$ month : chr "07" [12:35:48.098] | : . .. .. .. .. ..$ day : chr "28" [12:35:48.098] | : . .. .. .. .. ..$ svn rev : chr "88462" [12:35:48.098] | : . .. .. .. .. ..$ language : chr "R" [12:35:48.098] | : . .. .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-07-28 r88462 ucrt)" [12:35:48.098] | : . .. .. .. .. ..$ nickname : chr "Unsuffered Consequences" [12:35:48.098] | : . .. .. .. .. ..$ os.type : chr "windows" [12:35:48.098] | : . .. .. .. ..$ system :List of 9 [12:35:48.098] | : . .. .. .. .. ..$ sysname : chr "Windows" [12:35:48.098] | : . .. .. .. .. ..$ release : chr "Server x64" [12:35:48.098] | : . .. .. .. .. ..$ version : chr "build 20348" [12:35:48.098] | : . .. .. .. .. ..$ nodename : chr "CRANWIN3" [12:35:48.098] | : . .. .. .. .. ..$ machine : chr "x86-64" [12:35:48.098] | : . .. .. .. .. ..$ login : chr "CRAN" [12:35:48.098] | : . .. .. .. .. ..$ user : chr "CRAN" [12:35:48.098] | : . .. .. .. .. ..$ effective_user: chr "CRAN" [12:35:48.098] | : . .. .. .. .. ..$ udomain : chr "CRANWIN3" [12:35:48.098] | : . .. .. .. ..$ l10n :List of 5 [12:35:48.098] | : . .. .. .. .. ..$ MBCS : logi TRUE [12:35:48.098] | : . .. .. .. .. ..$ UTF-8 : logi TRUE [12:35:48.098] | : . .. .. .. .. ..$ Latin-1 : logi FALSE [12:35:48.098] | : . .. .. .. .. ..$ codepage : int 65001 [12:35:48.098] | : . .. .. .. .. ..$ system.codepage: int 65001 [12:35:48.098] | : . .. .. .. ..$ extSoftVersion: Named chr [1:11] "1.3.1" "1.0.8, 13-Jul-2019" "5.8.1" "1.24" ... [12:35:48.098] | : . .. .. .. .. ..- attr(*, "names")= chr [1:11] "zlib" "bzlib" "xz" "libdeflate" ... [12:35:48.098] | : . .. .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [12:35:48.098] | : . .. .. .. ..$ tempdir : chr "D:\\temp\\2025_07_29_12_30_17_31216\\Rtmp0A02Uh" [12:35:48.098] | : . .. .. .. ..$ libs : chr [1:2] "D:/temp/2025_07_29_12_30_17_31216/RtmpU917xP/RLIBS_1bc403705485f" "D:/RCompile/recent/R/library" [12:35:48.098] | : . .. .. .. ..$ pkgs : NULL [12:35:48.098] | : . .. .. ..- attr(*, "options")=List of 35 [12:35:48.098] | : . .. .. .. ..$ worker : chr "localhost" [12:35:48.098] | : . .. .. .. .. ..- attr(*, "localhost")= logi TRUE [12:35:48.098] | : . .. .. .. ..$ master : chr "localhost" [12:35:48.098] | : . .. .. .. ..$ port : int 24138 [12:35:48.098] | : . .. .. .. ..$ connectTimeout : num 120 [12:35:48.098] | : . .. .. .. ..$ timeout : num 120 [12:35:48.098] | : . .. .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [12:35:48.098] | : . .. .. .. ..$ homogeneous : logi TRUE [12:35:48.098] | : . .. .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:95280:CRANWIN3:CRAN"| __truncated__ [12:35:48.098] | : . .. .. .. ..$ rscript_envs : NULL [12:35:48.098] | : . .. .. .. ..$ rscript_libs : NULL [12:35:48.098] | : . .. .. .. ..$ rscript_startup : NULL [12:35:48.098] | : . .. .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [12:35:48.098] | : . .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [12:35:48.098] | : . .. .. .. ..$ methods : logi TRUE [12:35:48.098] | : . .. .. .. ..$ socketOptions : chr "no-delay" [12:35:48.098] | : . .. .. .. ..$ useXDR : logi FALSE [12:35:48.098] | : . .. .. .. ..$ outfile : chr "/dev/null" [12:35:48.098] | : . .. .. .. ..$ renice : int NA [12:35:48.098] | : . .. .. .. ..$ rshcmd : NULL [12:35:48.098] | : . .. .. .. ..$ user : chr(0) [12:35:48.098] | : . .. .. .. ..$ revtunnel : logi FALSE [12:35:48.098] | : . .. .. .. ..$ rshlogfile : NULL [12:35:48.098] | : . .. .. .. ..$ rshopts : chr(0) [12:35:48.098] | : . .. .. .. ..$ rank : int 0 [12:35:48.098] | : . .. .. .. ..$ manual : logi FALSE [12:35:48.098] | : . .. .. .. ..$ dryrun : logi FALSE [12:35:48.098] | : . .. .. .. ..$ quiet : logi FALSE [12:35:48.098] | : . .. .. .. ..$ setup_strategy : chr "parallel" [12:35:48.098] | : . .. .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [12:35:48.098] | : . .. .. .. ..$ rshcmd_label : NULL [12:35:48.098] | : . .. .. .. ..$ rsh_call : NULL [12:35:48.098] | : . .. .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [12:35:48.098] | : . .. .. .. ..$ localMachine : logi TRUE [12:35:48.098] | : . .. .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [12:35:48.098] | : . master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [12:35:48.098] | : . 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [12:35:48.098] | : . 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [12:35:48.098] | : . rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [12:35:48.098] | : . "cmd", "sh", "none"), default_packages = c("datasets", "utils", [12:35:48.098] | : . "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [12:35:48.098] | : . socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [12:35:48.098] | : . "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [12:35:48.098] | : . FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [12:35:48.098] | : . NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [12:35:48.098] | : . NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [12:35:48.098] | : . setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [12:35:48.098] | : . "parallel"), calls = getOption2("parallelly.makeNodePSOCK.calls", [12:35:48.098] | : . FALSE), action = c("launch", "options"), verbose = FALSE) [12:35:48.098] | : . .. .. .. ..$ arguments :List of 29 [12:35:48.098] | : . .. .. .. .. ..$ worker : chr "localhost" [12:35:48.098] | : . .. .. .. .. ..$ master : NULL [12:35:48.098] | : . .. .. .. .. ..$ port : int 24138 [12:35:48.098] | : . .. .. .. .. ..$ connectTimeout : num 120 [12:35:48.098] | : . .. .. .. .. ..$ timeout : num 120 [12:35:48.098] | : . .. .. .. .. ..$ rscript : NULL [12:35:48.098] | : . .. .. .. .. ..$ homogeneous : NULL [12:35:48.098] | : . .. .. .. .. ..$ rscript_args : NULL [12:35:48.098] | : . .. .. .. .. ..$ rscript_envs : NULL [12:35:48.098] | : . .. .. .. .. ..$ rscript_libs : NULL [12:35:48.098] | : . .. .. .. .. ..$ rscript_startup : NULL [12:35:48.098] | : . .. .. .. .. ..$ rscript_sh : chr "auto" [12:35:48.098] | : . .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [12:35:48.098] | : . .. .. .. .. ..$ methods : logi TRUE [12:35:48.098] | : . .. .. .. .. ..$ socketOptions : chr "no-delay" [12:35:48.098] | : . .. .. .. .. ..$ useXDR : logi FALSE [12:35:48.098] | : . .. .. .. .. ..$ outfile : chr "/dev/null" [12:35:48.098] | : . .. .. .. .. ..$ renice : int NA [12:35:48.098] | : . .. .. .. .. ..$ rshcmd : NULL [12:35:48.098] | : . .. .. .. .. ..$ user : NULL [12:35:48.098] | : . .. .. .. .. ..$ revtunnel : logi NA [12:35:48.098] | : . .. .. .. .. ..$ rshlogfile : NULL [12:35:48.098] | : . .. .. .. .. ..$ rshopts : NULL [12:35:48.098] | : . .. .. .. .. ..$ rank : int 1 [12:35:48.098] | : . .. .. .. .. ..$ manual : logi FALSE [12:35:48.098] | : . .. .. .. .. ..$ dryrun : logi FALSE [12:35:48.098] | : . .. .. .. .. ..$ quiet : logi FALSE [12:35:48.098] | : . .. .. .. .. ..$ setup_strategy : chr "parallel" [12:35:48.098] | : . .. .. .. .. ..$ calls : logi FALSE [12:35:48.098] | : . .. .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [12:35:48.098] | : . .. .. ..- attr(*, "calls")=Dotted pair list of 16 [12:35:48.098] | : . .. .. .. ..$ : language future:::testme("tweak") [12:35:48.098] | : . .. .. .. ..$ : language source(file.path(path, "run.R")) [12:35:48.098] | : . .. .. .. ..$ : language withVisible(eval(ei, envir)) [12:35:48.098] | : . .. .. .. ..$ : language eval(ei, envir) [12:35:48.098] | : . .. .. .. ..$ : language eval(ei, envir) [12:35:48.098] | : . .. .. .. ..$ : language source(testme[["script"]], echo = TRUE) [12:35:48.098] | : . .. .. .. ..$ : language withVisible(eval(ei, envir)) [12:35:48.098] | : . .. .. .. ..$ : language eval(ei, envir) [12:35:48.098] | : . .. .. .. ..$ : language eval(ei, envir) [12:35:48.098] | : . .. .. .. ..$ : language local({ cl <- makeClusterPSOCK(1L) ... [12:35:48.098] | : . .. .. .. ..$ : language eval.parent(substitute(eval(quote(expr), envir))) [12:35:48.098] | : . .. .. .. ..$ : language eval(expr, p) [12:35:48.098] | : . .. .. .. ..$ : language eval(expr, p) [12:35:48.098] | : . .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [12:35:48.098] | : . .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [12:35:48.098] | : . .. .. .. ..$ : language makeClusterPSOCK(1L) [12:35:48.098] | : . .. .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [12:35:48.098] | : . .. ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [12:35:48.098] | : . - attr(*, "call")= language future::plan(future::cluster, workers = cl) [12:35:48.182] | : . init: TRUE [12:35:48.182] | : . makeFutureBackend() ... [12:35:48.183] | : . ' Backend function: <'NULL'> [12:35:48.183] | : . ' Evaluator tweak arguments: [n=1] [12:35:48.184] | : . ' List of 1 [12:35:48.184] | : . ' $ workers:List of 1 [12:35:48.184] | : . ' ..$ :List of 4 [12:35:48.184] | : . ' .. ..$ con : 'sockconn' int 4 [12:35:48.184] | : . ' .. .. ..- attr(*, "conn_id")= [12:35:48.184] | : . ' .. ..$ host : chr "localhost" [12:35:48.184] | : . ' .. .. ..- attr(*, "localhost")= logi TRUE [12:35:48.184] | : . ' .. ..$ rank : int 0 [12:35:48.184] | : . ' .. ..$ session_info:List of 9 [12:35:48.184] | : . ' .. .. ..$ process :List of 1 [12:35:48.184] | : . ' .. .. .. ..$ pid: int 143648 [12:35:48.184] | : . ' .. .. ..$ r :List of 16 [12:35:48.184] | : . ' .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [12:35:48.184] | : . ' .. .. .. ..$ arch : chr "x86_64" [12:35:48.184] | : . ' .. .. .. ..$ os : chr "mingw32" [12:35:48.184] | : . ' .. .. .. ..$ crt : chr "ucrt" [12:35:48.184] | : . ' .. .. .. ..$ system : chr "x86_64, mingw32" [12:35:48.184] | : . ' .. .. .. ..$ status : chr "Under development (unstable)" [12:35:48.184] | : . ' .. .. .. ..$ major : chr "4" [12:35:48.184] | : . ' .. .. .. ..$ minor : chr "6.0" [12:35:48.184] | : . ' .. .. .. ..$ year : chr "2025" [12:35:48.184] | : . ' .. .. .. ..$ month : chr "07" [12:35:48.184] | : . ' .. .. .. ..$ day : chr "28" [12:35:48.184] | : . ' .. .. .. ..$ svn rev : chr "88462" [12:35:48.184] | : . ' .. .. .. ..$ language : chr "R" [12:35:48.184] | : . ' .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-07-28 r88462 ucrt)" [12:35:48.184] | : . ' .. .. .. ..$ nickname : chr "Unsuffered Consequences" [12:35:48.184] | : . ' .. .. .. ..$ os.type : chr "windows" [12:35:48.184] | : . ' .. .. ..$ system :List of 9 [12:35:48.184] | : . ' .. .. .. ..$ sysname : chr "Windows" [12:35:48.184] | : . ' .. .. .. ..$ release : chr "Server x64" [12:35:48.184] | : . ' .. .. .. ..$ version : chr "build 20348" [12:35:48.184] | : . ' .. .. .. ..$ nodename : chr "CRANWIN3" [12:35:48.184] | : . ' .. .. .. ..$ machine : chr "x86-64" [12:35:48.184] | : . ' .. .. .. ..$ login : chr "CRAN" [12:35:48.184] | : . ' .. .. .. ..$ user : chr "CRAN" [12:35:48.184] | : . ' .. .. .. ..$ effective_user: chr "CRAN" [12:35:48.184] | : . ' .. .. .. ..$ udomain : chr "CRANWIN3" [12:35:48.184] | : . ' .. .. ..$ l10n :List of 5 [12:35:48.184] | : . ' .. .. .. ..$ MBCS : logi TRUE [12:35:48.184] | : . ' .. .. .. ..$ UTF-8 : logi TRUE [12:35:48.184] | : . ' .. .. .. ..$ Latin-1 : logi FALSE [12:35:48.184] | : . ' .. .. .. ..$ codepage : int 65001 [12:35:48.184] | : . ' .. .. .. ..$ system.codepage: int 65001 [12:35:48.184] | : . ' .. .. ..$ extSoftVersion: Named chr [1:11] "1.3.1" "1.0.8, 13-Jul-2019" "5.8.1" "1.24" ... [12:35:48.184] | : . ' .. .. .. ..- attr(*, "names")= chr [1:11] "zlib" "bzlib" "xz" "libdeflate" ... [12:35:48.184] | : . ' .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [12:35:48.184] | : . ' .. .. ..$ tempdir : chr "D:\\temp\\2025_07_29_12_30_17_31216\\Rtmp0A02Uh" [12:35:48.184] | : . ' .. .. ..$ libs : chr [1:2] "D:/temp/2025_07_29_12_30_17_31216/RtmpU917xP/RLIBS_1bc403705485f" "D:/RCompile/recent/R/library" [12:35:48.184] | : . ' .. .. ..$ pkgs : NULL [12:35:48.184] | : . ' .. ..- attr(*, "options")=List of 35 [12:35:48.184] | : . ' .. .. ..$ worker : chr "localhost" [12:35:48.184] | : . ' .. .. .. ..- attr(*, "localhost")= logi TRUE [12:35:48.184] | : . ' .. .. ..$ master : chr "localhost" [12:35:48.184] | : . ' .. .. ..$ port : int 24138 [12:35:48.184] | : . ' .. .. ..$ connectTimeout : num 120 [12:35:48.184] | : . ' .. .. ..$ timeout : num 120 [12:35:48.184] | : . ' .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [12:35:48.184] | : . ' .. .. ..$ homogeneous : logi TRUE [12:35:48.184] | : . ' .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:95280:CRANWIN3:CRAN"| __truncated__ [12:35:48.184] | : . ' .. .. ..$ rscript_envs : NULL [12:35:48.184] | : . ' .. .. ..$ rscript_libs : NULL [12:35:48.184] | : . ' .. .. ..$ rscript_startup : NULL [12:35:48.184] | : . ' .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [12:35:48.184] | : . ' .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [12:35:48.184] | : . ' .. .. ..$ methods : logi TRUE [12:35:48.184] | : . ' .. .. ..$ socketOptions : chr "no-delay" [12:35:48.184] | : . ' .. .. ..$ useXDR : logi FALSE [12:35:48.184] | : . ' .. .. ..$ outfile : chr "/dev/null" [12:35:48.184] | : . ' .. .. ..$ renice : int NA [12:35:48.184] | : . ' .. .. ..$ rshcmd : NULL [12:35:48.184] | : . ' .. .. ..$ user : chr(0) [12:35:48.184] | : . ' .. .. ..$ revtunnel : logi FALSE [12:35:48.184] | : . ' .. .. ..$ rshlogfile : NULL [12:35:48.184] | : . ' .. .. ..$ rshopts : chr(0) [12:35:48.184] | : . ' .. .. ..$ rank : int 0 [12:35:48.184] | : . ' .. .. ..$ manual : logi FALSE [12:35:48.184] | : . ' .. .. ..$ dryrun : logi FALSE [12:35:48.184] | : . ' .. .. ..$ quiet : logi FALSE [12:35:48.184] | : . ' .. .. ..$ setup_strategy : chr "parallel" [12:35:48.184] | : . ' .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [12:35:48.184] | : . ' .. .. ..$ rshcmd_label : NULL [12:35:48.184] | : . ' .. .. ..$ rsh_call : NULL [12:35:48.184] | : . ' .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [12:35:48.184] | : . ' .. .. ..$ localMachine : logi TRUE [12:35:48.184] | : . ' .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [12:35:48.184] | : . ' master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [12:35:48.184] | : . ' 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [12:35:48.184] | : . ' 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [12:35:48.184] | : . ' rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [12:35:48.184] | : . ' "cmd", "sh", "none"), default_packages = c("datasets", "utils", [12:35:48.184] | : . ' "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [12:35:48.184] | : . ' socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [12:35:48.184] | : . ' "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [12:35:48.184] | : . ' FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [12:35:48.184] | : . ' NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [12:35:48.184] | : . ' NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [12:35:48.184] | : . ' setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [12:35:48.184] | : . ' "parallel"), calls = getOption2("parallelly.makeNodePSOCK.calls", [12:35:48.184] | : . ' FALSE), action = c("launch", "options"), verbose = FALSE) [12:35:48.184] | : . ' .. .. ..$ arguments :List of 29 [12:35:48.184] | : . ' .. .. .. ..$ worker : chr "localhost" [12:35:48.184] | : . ' .. .. .. ..$ master : NULL [12:35:48.184] | : . ' .. .. .. ..$ port : int 24138 [12:35:48.184] | : . ' .. .. .. ..$ connectTimeout : num 120 [12:35:48.184] | : . ' .. .. .. ..$ timeout : num 120 [12:35:48.184] | : . ' .. .. .. ..$ rscript : NULL [12:35:48.184] | : . ' .. .. .. ..$ homogeneous : NULL [12:35:48.184] | : . ' .. .. .. ..$ rscript_args : NULL [12:35:48.184] | : . ' .. .. .. ..$ rscript_envs : NULL [12:35:48.184] | : . ' .. .. .. ..$ rscript_libs : NULL [12:35:48.184] | : . ' .. .. .. ..$ rscript_startup : NULL [12:35:48.184] | : . ' .. .. .. ..$ rscript_sh : chr "auto" [12:35:48.184] | : . ' .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [12:35:48.184] | : . ' .. .. .. ..$ methods : logi TRUE [12:35:48.184] | : . ' .. .. .. ..$ socketOptions : chr "no-delay" [12:35:48.184] | : . ' .. .. .. ..$ useXDR : logi FALSE [12:35:48.184] | : . ' .. .. .. ..$ outfile : chr "/dev/null" [12:35:48.184] | : . ' .. .. .. ..$ renice : int NA [12:35:48.184] | : . ' .. .. .. ..$ rshcmd : NULL [12:35:48.184] | : . ' .. .. .. ..$ user : NULL [12:35:48.184] | : . ' .. .. .. ..$ revtunnel : logi NA [12:35:48.184] | : . ' .. .. .. ..$ rshlogfile : NULL [12:35:48.184] | : . ' .. .. .. ..$ rshopts : NULL [12:35:48.184] | : . ' .. .. .. ..$ rank : int 1 [12:35:48.184] | : . ' .. .. .. ..$ manual : logi FALSE [12:35:48.184] | : . ' .. .. .. ..$ dryrun : logi FALSE [12:35:48.184] | : . ' .. .. .. ..$ quiet : logi FALSE [12:35:48.184] | : . ' .. .. .. ..$ setup_strategy : chr "parallel" [12:35:48.184] | : . ' .. .. .. ..$ calls : logi FALSE [12:35:48.184] | : . ' .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [12:35:48.184] | : . ' .. ..- attr(*, "calls")=Dotted pair list of 16 [12:35:48.184] | : . ' .. .. ..$ : language future:::testme("tweak") [12:35:48.184] | : . ' .. .. ..$ : language source(file.path(path, "run.R")) [12:35:48.184] | : . ' .. .. ..$ : language withVisible(eval(ei, envir)) [12:35:48.184] | : . ' .. .. ..$ : language eval(ei, envir) [12:35:48.184] | : . ' .. .. ..$ : language eval(ei, envir) [12:35:48.184] | : . ' .. .. ..$ : language source(testme[["script"]], echo = TRUE) [12:35:48.184] | : . ' .. .. ..$ : language withVisible(eval(ei, envir)) [12:35:48.184] | : . ' .. .. ..$ : language eval(ei, envir) [12:35:48.184] | : . ' .. .. ..$ : language eval(ei, envir) [12:35:48.184] | : . ' .. .. ..$ : language local({ cl <- makeClusterPSOCK(1L) ... [12:35:48.184] | : . ' .. .. ..$ : language eval.parent(substitute(eval(quote(expr), envir))) [12:35:48.184] | : . ' .. .. ..$ : language eval(expr, p) [12:35:48.184] | : . ' .. .. ..$ : language eval(expr, p) [12:35:48.184] | : . ' .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [12:35:48.184] | : . ' .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [12:35:48.184] | : . ' .. .. ..$ : language makeClusterPSOCK(1L) [12:35:48.184] | : . ' .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [12:35:48.184] | : . ' ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [12:35:48.265] | : . ' Evaluator formal arguments: [n=1] [12:35:48.265] | : . ' List of 1 [12:35:48.265] | : . ' $ workers:List of 1 [12:35:48.265] | : . ' ..$ :List of 4 [12:35:48.265] | : . ' .. ..$ con : 'sockconn' int 4 [12:35:48.265] | : . ' .. .. ..- attr(*, "conn_id")= [12:35:48.265] | : . ' .. ..$ host : chr "localhost" [12:35:48.265] | : . ' .. .. ..- attr(*, "localhost")= logi TRUE [12:35:48.265] | : . ' .. ..$ rank : int 0 [12:35:48.265] | : . ' .. ..$ session_info:List of 9 [12:35:48.265] | : . ' .. .. ..$ process :List of 1 [12:35:48.265] | : . ' .. .. .. ..$ pid: int 143648 [12:35:48.265] | : . ' .. .. ..$ r :List of 16 [12:35:48.265] | : . ' .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [12:35:48.265] | : . ' .. .. .. ..$ arch : chr "x86_64" [12:35:48.265] | : . ' .. .. .. ..$ os : chr "mingw32" [12:35:48.265] | : . ' .. .. .. ..$ crt : chr "ucrt" [12:35:48.265] | : . ' .. .. .. ..$ system : chr "x86_64, mingw32" [12:35:48.265] | : . ' .. .. .. ..$ status : chr "Under development (unstable)" [12:35:48.265] | : . ' .. .. .. ..$ major : chr "4" [12:35:48.265] | : . ' .. .. .. ..$ minor : chr "6.0" [12:35:48.265] | : . ' .. .. .. ..$ year : chr "2025" [12:35:48.265] | : . ' .. .. .. ..$ month : chr "07" [12:35:48.265] | : . ' .. .. .. ..$ day : chr "28" [12:35:48.265] | : . ' .. .. .. ..$ svn rev : chr "88462" [12:35:48.265] | : . ' .. .. .. ..$ language : chr "R" [12:35:48.265] | : . ' .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-07-28 r88462 ucrt)" [12:35:48.265] | : . ' .. .. .. ..$ nickname : chr "Unsuffered Consequences" [12:35:48.265] | : . ' .. .. .. ..$ os.type : chr "windows" [12:35:48.265] | : . ' .. .. ..$ system :List of 9 [12:35:48.265] | : . ' .. .. .. ..$ sysname : chr "Windows" [12:35:48.265] | : . ' .. .. .. ..$ release : chr "Server x64" [12:35:48.265] | : . ' .. .. .. ..$ version : chr "build 20348" [12:35:48.265] | : . ' .. .. .. ..$ nodename : chr "CRANWIN3" [12:35:48.265] | : . ' .. .. .. ..$ machine : chr "x86-64" [12:35:48.265] | : . ' .. .. .. ..$ login : chr "CRAN" [12:35:48.265] | : . ' .. .. .. ..$ user : chr "CRAN" [12:35:48.265] | : . ' .. .. .. ..$ effective_user: chr "CRAN" [12:35:48.265] | : . ' .. .. .. ..$ udomain : chr "CRANWIN3" [12:35:48.265] | : . ' .. .. ..$ l10n :List of 5 [12:35:48.265] | : . ' .. .. .. ..$ MBCS : logi TRUE [12:35:48.265] | : . ' .. .. .. ..$ UTF-8 : logi TRUE [12:35:48.265] | : . ' .. .. .. ..$ Latin-1 : logi FALSE [12:35:48.265] | : . ' .. .. .. ..$ codepage : int 65001 [12:35:48.265] | : . ' .. .. .. ..$ system.codepage: int 65001 [12:35:48.265] | : . ' .. .. ..$ extSoftVersion: Named chr [1:11] "1.3.1" "1.0.8, 13-Jul-2019" "5.8.1" "1.24" ... [12:35:48.265] | : . ' .. .. .. ..- attr(*, "names")= chr [1:11] "zlib" "bzlib" "xz" "libdeflate" ... [12:35:48.265] | : . ' .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [12:35:48.265] | : . ' .. .. ..$ tempdir : chr "D:\\temp\\2025_07_29_12_30_17_31216\\Rtmp0A02Uh" [12:35:48.265] | : . ' .. .. ..$ libs : chr [1:2] "D:/temp/2025_07_29_12_30_17_31216/RtmpU917xP/RLIBS_1bc403705485f" "D:/RCompile/recent/R/library" [12:35:48.265] | : . ' .. .. ..$ pkgs : NULL [12:35:48.265] | : . ' .. ..- attr(*, "options")=List of 35 [12:35:48.265] | : . ' .. .. ..$ worker : chr "localhost" [12:35:48.265] | : . ' .. .. .. ..- attr(*, "localhost")= logi TRUE [12:35:48.265] | : . ' .. .. ..$ master : chr "localhost" [12:35:48.265] | : . ' .. .. ..$ port : int 24138 [12:35:48.265] | : . ' .. .. ..$ connectTimeout : num 120 [12:35:48.265] | : . ' .. .. ..$ timeout : num 120 [12:35:48.265] | : . ' .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [12:35:48.265] | : . ' .. .. ..$ homogeneous : logi TRUE [12:35:48.265] | : . ' .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:95280:CRANWIN3:CRAN"| __truncated__ [12:35:48.265] | : . ' .. .. ..$ rscript_envs : NULL [12:35:48.265] | : . ' .. .. ..$ rscript_libs : NULL [12:35:48.265] | : . ' .. .. ..$ rscript_startup : NULL [12:35:48.265] | : . ' .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [12:35:48.265] | : . ' .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [12:35:48.265] | : . ' .. .. ..$ methods : logi TRUE [12:35:48.265] | : . ' .. .. ..$ socketOptions : chr "no-delay" [12:35:48.265] | : . ' .. .. ..$ useXDR : logi FALSE [12:35:48.265] | : . ' .. .. ..$ outfile : chr "/dev/null" [12:35:48.265] | : . ' .. .. ..$ renice : int NA [12:35:48.265] | : . ' .. .. ..$ rshcmd : NULL [12:35:48.265] | : . ' .. .. ..$ user : chr(0) [12:35:48.265] | : . ' .. .. ..$ revtunnel : logi FALSE [12:35:48.265] | : . ' .. .. ..$ rshlogfile : NULL [12:35:48.265] | : . ' .. .. ..$ rshopts : chr(0) [12:35:48.265] | : . ' .. .. ..$ rank : int 0 [12:35:48.265] | : . ' .. .. ..$ manual : logi FALSE [12:35:48.265] | : . ' .. .. ..$ dryrun : logi FALSE [12:35:48.265] | : . ' .. .. ..$ quiet : logi FALSE [12:35:48.265] | : . ' .. .. ..$ setup_strategy : chr "parallel" [12:35:48.265] | : . ' .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [12:35:48.265] | : . ' .. .. ..$ rshcmd_label : NULL [12:35:48.265] | : . ' .. .. ..$ rsh_call : NULL [12:35:48.265] | : . ' .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [12:35:48.265] | : . ' .. .. ..$ localMachine : logi TRUE [12:35:48.265] | : . ' .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [12:35:48.265] | : . ' master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [12:35:48.265] | : . ' 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [12:35:48.265] | : . ' 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [12:35:48.265] | : . ' rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [12:35:48.265] | : . ' "cmd", "sh", "none"), default_packages = c("datasets", "utils", [12:35:48.265] | : . ' "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [12:35:48.265] | : . ' socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [12:35:48.265] | : . ' "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [12:35:48.265] | : . ' FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [12:35:48.265] | : . ' NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [12:35:48.265] | : . ' NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [12:35:48.265] | : . ' setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [12:35:48.265] | : . ' "parallel"), calls = getOption2("parallelly.makeNodePSOCK.calls", [12:35:48.265] | : . ' FALSE), action = c("launch", "options"), verbose = FALSE) [12:35:48.265] | : . ' .. .. ..$ arguments :List of 29 [12:35:48.265] | : . ' .. .. .. ..$ worker : chr "localhost" [12:35:48.265] | : . ' .. .. .. ..$ master : NULL [12:35:48.265] | : . ' .. .. .. ..$ port : int 24138 [12:35:48.265] | : . ' .. .. .. ..$ connectTimeout : num 120 [12:35:48.265] | : . ' .. .. .. ..$ timeout : num 120 [12:35:48.265] | : . ' .. .. .. ..$ rscript : NULL [12:35:48.265] | : . ' .. .. .. ..$ homogeneous : NULL [12:35:48.265] | : . ' .. .. .. ..$ rscript_args : NULL [12:35:48.265] | : . ' .. .. .. ..$ rscript_envs : NULL [12:35:48.265] | : . ' .. .. .. ..$ rscript_libs : NULL [12:35:48.265] | : . ' .. .. .. ..$ rscript_startup : NULL [12:35:48.265] | : . ' .. .. .. ..$ rscript_sh : chr "auto" [12:35:48.265] | : . ' .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [12:35:48.265] | : . ' .. .. .. ..$ methods : logi TRUE [12:35:48.265] | : . ' .. .. .. ..$ socketOptions : chr "no-delay" [12:35:48.265] | : . ' .. .. .. ..$ useXDR : logi FALSE [12:35:48.265] | : . ' .. .. .. ..$ outfile : chr "/dev/null" [12:35:48.265] | : . ' .. .. .. ..$ renice : int NA [12:35:48.265] | : . ' .. .. .. ..$ rshcmd : NULL [12:35:48.265] | : . ' .. .. .. ..$ user : NULL [12:35:48.265] | : . ' .. .. .. ..$ revtunnel : logi NA [12:35:48.265] | : . ' .. .. .. ..$ rshlogfile : NULL [12:35:48.265] | : . ' .. .. .. ..$ rshopts : NULL [12:35:48.265] | : . ' .. .. .. ..$ rank : int 1 [12:35:48.265] | : . ' .. .. .. ..$ manual : logi FALSE [12:35:48.265] | : . ' .. .. .. ..$ dryrun : logi FALSE [12:35:48.265] | : . ' .. .. .. ..$ quiet : logi FALSE [12:35:48.265] | : . ' .. .. .. ..$ setup_strategy : chr "parallel" [12:35:48.265] | : . ' .. .. .. ..$ calls : logi FALSE [12:35:48.265] | : . ' .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [12:35:48.265] | : . ' .. ..- attr(*, "calls")=Dotted pair list of 16 [12:35:48.265] | : . ' .. .. ..$ : language future:::testme("tweak") [12:35:48.265] | : . ' .. .. ..$ : language source(file.path(path, "run.R")) [12:35:48.265] | : . ' .. .. ..$ : language withVisible(eval(ei, envir)) [12:35:48.265] | : . ' .. .. ..$ : language eval(ei, envir) [12:35:48.265] | : . ' .. .. ..$ : language eval(ei, envir) [12:35:48.265] | : . ' .. .. ..$ : language source(testme[["script"]], echo = TRUE) [12:35:48.265] | : . ' .. .. ..$ : language withVisible(eval(ei, envir)) [12:35:48.265] | : . ' .. .. ..$ : language eval(ei, envir) [12:35:48.265] | : . ' .. .. ..$ : language eval(ei, envir) [12:35:48.265] | : . ' .. .. ..$ : language local({ cl <- makeClusterPSOCK(1L) ... [12:35:48.265] | : . ' .. .. ..$ : language eval.parent(substitute(eval(quote(expr), envir))) [12:35:48.265] | : . ' .. .. ..$ : language eval(expr, p) [12:35:48.265] | : . ' .. .. ..$ : language eval(expr, p) [12:35:48.265] | : . ' .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [12:35:48.265] | : . ' .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [12:35:48.265] | : . ' .. .. ..$ : language makeClusterPSOCK(1L) [12:35:48.265] | : . ' .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [12:35:48.265] | : . ' ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [12:35:48.339] | : . ' Backend factory arguments: [n=1] [12:35:48.339] | : . ' Dotted pair list of 1 [12:35:48.339] | : . ' $ workers:List of 1 [12:35:48.339] | : . ' ..$ :List of 4 [12:35:48.339] | : . ' .. ..$ con : 'sockconn' int 4 [12:35:48.339] | : . ' .. .. ..- attr(*, "conn_id")= [12:35:48.339] | : . ' .. ..$ host : chr "localhost" [12:35:48.339] | : . ' .. .. ..- attr(*, "localhost")= logi TRUE [12:35:48.339] | : . ' .. ..$ rank : int 0 [12:35:48.339] | : . ' .. ..$ session_info:List of 9 [12:35:48.339] | : . ' .. .. ..$ process :List of 1 [12:35:48.339] | : . ' .. .. .. ..$ pid: int 143648 [12:35:48.339] | : . ' .. .. ..$ r :List of 16 [12:35:48.339] | : . ' .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [12:35:48.339] | : . ' .. .. .. ..$ arch : chr "x86_64" [12:35:48.339] | : . ' .. .. .. ..$ os : chr "mingw32" [12:35:48.339] | : . ' .. .. .. ..$ crt : chr "ucrt" [12:35:48.339] | : . ' .. .. .. ..$ system : chr "x86_64, mingw32" [12:35:48.339] | : . ' .. .. .. ..$ status : chr "Under development (unstable)" [12:35:48.339] | : . ' .. .. .. ..$ major : chr "4" [12:35:48.339] | : . ' .. .. .. ..$ minor : chr "6.0" [12:35:48.339] | : . ' .. .. .. ..$ year : chr "2025" [12:35:48.339] | : . ' .. .. .. ..$ month : chr "07" [12:35:48.339] | : . ' .. .. .. ..$ day : chr "28" [12:35:48.339] | : . ' .. .. .. ..$ svn rev : chr "88462" [12:35:48.339] | : . ' .. .. .. ..$ language : chr "R" [12:35:48.339] | : . ' .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-07-28 r88462 ucrt)" [12:35:48.339] | : . ' .. .. .. ..$ nickname : chr "Unsuffered Consequences" [12:35:48.339] | : . ' .. .. .. ..$ os.type : chr "windows" [12:35:48.339] | : . ' .. .. ..$ system :List of 9 [12:35:48.339] | : . ' .. .. .. ..$ sysname : chr "Windows" [12:35:48.339] | : . ' .. .. .. ..$ release : chr "Server x64" [12:35:48.339] | : . ' .. .. .. ..$ version : chr "build 20348" [12:35:48.339] | : . ' .. .. .. ..$ nodename : chr "CRANWIN3" [12:35:48.339] | : . ' .. .. .. ..$ machine : chr "x86-64" [12:35:48.339] | : . ' .. .. .. ..$ login : chr "CRAN" [12:35:48.339] | : . ' .. .. .. ..$ user : chr "CRAN" [12:35:48.339] | : . ' .. .. .. ..$ effective_user: chr "CRAN" [12:35:48.339] | : . ' .. .. .. ..$ udomain : chr "CRANWIN3" [12:35:48.339] | : . ' .. .. ..$ l10n :List of 5 [12:35:48.339] | : . ' .. .. .. ..$ MBCS : logi TRUE [12:35:48.339] | : . ' .. .. .. ..$ UTF-8 : logi TRUE [12:35:48.339] | : . ' .. .. .. ..$ Latin-1 : logi FALSE [12:35:48.339] | : . ' .. .. .. ..$ codepage : int 65001 [12:35:48.339] | : . ' .. .. .. ..$ system.codepage: int 65001 [12:35:48.339] | : . ' .. .. ..$ extSoftVersion: Named chr [1:11] "1.3.1" "1.0.8, 13-Jul-2019" "5.8.1" "1.24" ... [12:35:48.339] | : . ' .. .. .. ..- attr(*, "names")= chr [1:11] "zlib" "bzlib" "xz" "libdeflate" ... [12:35:48.339] | : . ' .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [12:35:48.339] | : . ' .. .. ..$ tempdir : chr "D:\\temp\\2025_07_29_12_30_17_31216\\Rtmp0A02Uh" [12:35:48.339] | : . ' .. .. ..$ libs : chr [1:2] "D:/temp/2025_07_29_12_30_17_31216/RtmpU917xP/RLIBS_1bc403705485f" "D:/RCompile/recent/R/library" [12:35:48.339] | : . ' .. .. ..$ pkgs : NULL [12:35:48.339] | : . ' .. ..- attr(*, "options")=List of 35 [12:35:48.339] | : . ' .. .. ..$ worker : chr "localhost" [12:35:48.339] | : . ' .. .. .. ..- attr(*, "localhost")= logi TRUE [12:35:48.339] | : . ' .. .. ..$ master : chr "localhost" [12:35:48.339] | : . ' .. .. ..$ port : int 24138 [12:35:48.339] | : . ' .. .. ..$ connectTimeout : num 120 [12:35:48.339] | : . ' .. .. ..$ timeout : num 120 [12:35:48.339] | : . ' .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [12:35:48.339] | : . ' .. .. ..$ homogeneous : logi TRUE [12:35:48.339] | : . ' .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:95280:CRANWIN3:CRAN"| __truncated__ [12:35:48.339] | : . ' .. .. ..$ rscript_envs : NULL [12:35:48.339] | : . ' .. .. ..$ rscript_libs : NULL [12:35:48.339] | : . ' .. .. ..$ rscript_startup : NULL [12:35:48.339] | : . ' .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [12:35:48.339] | : . ' .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [12:35:48.339] | : . ' .. .. ..$ methods : logi TRUE [12:35:48.339] | : . ' .. .. ..$ socketOptions : chr "no-delay" [12:35:48.339] | : . ' .. .. ..$ useXDR : logi FALSE [12:35:48.339] | : . ' .. .. ..$ outfile : chr "/dev/null" [12:35:48.339] | : . ' .. .. ..$ renice : int NA [12:35:48.339] | : . ' .. .. ..$ rshcmd : NULL [12:35:48.339] | : . ' .. .. ..$ user : chr(0) [12:35:48.339] | : . ' .. .. ..$ revtunnel : logi FALSE [12:35:48.339] | : . ' .. .. ..$ rshlogfile : NULL [12:35:48.339] | : . ' .. .. ..$ rshopts : chr(0) [12:35:48.339] | : . ' .. .. ..$ rank : int 0 [12:35:48.339] | : . ' .. .. ..$ manual : logi FALSE [12:35:48.339] | : . ' .. .. ..$ dryrun : logi FALSE [12:35:48.339] | : . ' .. .. ..$ quiet : logi FALSE [12:35:48.339] | : . ' .. .. ..$ setup_strategy : chr "parallel" [12:35:48.339] | : . ' .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [12:35:48.339] | : . ' .. .. ..$ rshcmd_label : NULL [12:35:48.339] | : . ' .. .. ..$ rsh_call : NULL [12:35:48.339] | : . ' .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [12:35:48.339] | : . ' .. .. ..$ localMachine : logi TRUE [12:35:48.339] | : . ' .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [12:35:48.339] | : . ' master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [12:35:48.339] | : . ' 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [12:35:48.339] | : . ' 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [12:35:48.339] | : . ' rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [12:35:48.339] | : . ' "cmd", "sh", "none"), default_packages = c("datasets", "utils", [12:35:48.339] | : . ' "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [12:35:48.339] | : . ' socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [12:35:48.339] | : . ' "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [12:35:48.339] | : . ' FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [12:35:48.339] | : . ' NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [12:35:48.339] | : . ' NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [12:35:48.339] | : . ' setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [12:35:48.339] | : . ' "parallel"), calls = getOption2("parallelly.makeNodePSOCK.calls", [12:35:48.339] | : . ' FALSE), action = c("launch", "options"), verbose = FALSE) [12:35:48.339] | : . ' .. .. ..$ arguments :List of 29 [12:35:48.339] | : . ' .. .. .. ..$ worker : chr "localhost" [12:35:48.339] | : . ' .. .. .. ..$ master : NULL [12:35:48.339] | : . ' .. .. .. ..$ port : int 24138 [12:35:48.339] | : . ' .. .. .. ..$ connectTimeout : num 120 [12:35:48.339] | : . ' .. .. .. ..$ timeout : num 120 [12:35:48.339] | : . ' .. .. .. ..$ rscript : NULL [12:35:48.339] | : . ' .. .. .. ..$ homogeneous : NULL [12:35:48.339] | : . ' .. .. .. ..$ rscript_args : NULL [12:35:48.339] | : . ' .. .. .. ..$ rscript_envs : NULL [12:35:48.339] | : . ' .. .. .. ..$ rscript_libs : NULL [12:35:48.339] | : . ' .. .. .. ..$ rscript_startup : NULL [12:35:48.339] | : . ' .. .. .. ..$ rscript_sh : chr "auto" [12:35:48.339] | : . ' .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [12:35:48.339] | : . ' .. .. .. ..$ methods : logi TRUE [12:35:48.339] | : . ' .. .. .. ..$ socketOptions : chr "no-delay" [12:35:48.339] | : . ' .. .. .. ..$ useXDR : logi FALSE [12:35:48.339] | : . ' .. .. .. ..$ outfile : chr "/dev/null" [12:35:48.339] | : . ' .. .. .. ..$ renice : int NA [12:35:48.339] | : . ' .. .. .. ..$ rshcmd : NULL [12:35:48.339] | : . ' .. .. .. ..$ user : NULL [12:35:48.339] | : . ' .. .. .. ..$ revtunnel : logi NA [12:35:48.339] | : . ' .. .. .. ..$ rshlogfile : NULL [12:35:48.339] | : . ' .. .. .. ..$ rshopts : NULL [12:35:48.339] | : . ' .. .. .. ..$ rank : int 1 [12:35:48.339] | : . ' .. .. .. ..$ manual : logi FALSE [12:35:48.339] | : . ' .. .. .. ..$ dryrun : logi FALSE [12:35:48.339] | : . ' .. .. .. ..$ quiet : logi FALSE [12:35:48.339] | : . ' .. .. .. ..$ setup_strategy : chr "parallel" [12:35:48.339] | : . ' .. .. .. ..$ calls : logi FALSE [12:35:48.339] | : . ' .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [12:35:48.339] | : . ' .. ..- attr(*, "calls")=Dotted pair list of 16 [12:35:48.339] | : . ' .. .. ..$ : language future:::testme("tweak") [12:35:48.339] | : . ' .. .. ..$ : language source(file.path(path, "run.R")) [12:35:48.339] | : . ' .. .. ..$ : language withVisible(eval(ei, envir)) [12:35:48.339] | : . ' .. .. ..$ : language eval(ei, envir) [12:35:48.339] | : . ' .. .. ..$ : language eval(ei, envir) [12:35:48.339] | : . ' .. .. ..$ : language source(testme[["script"]], echo = TRUE) [12:35:48.339] | : . ' .. .. ..$ : language withVisible(eval(ei, envir)) [12:35:48.339] | : . ' .. .. ..$ : language eval(ei, envir) [12:35:48.339] | : . ' .. .. ..$ : language eval(ei, envir) [12:35:48.339] | : . ' .. .. ..$ : language local({ cl <- makeClusterPSOCK(1L) ... [12:35:48.339] | : . ' .. .. ..$ : language eval.parent(substitute(eval(quote(expr), envir))) [12:35:48.339] | : . ' .. .. ..$ : language eval(expr, p) [12:35:48.339] | : . ' .. .. ..$ : language eval(expr, p) [12:35:48.339] | : . ' .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [12:35:48.339] | : . ' .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [12:35:48.339] | : . ' .. .. ..$ : language makeClusterPSOCK(1L) [12:35:48.339] | : . ' .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [12:35:48.339] | : . ' ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [12:35:48.400] | : . ' ClusterFutureBackend(..., persistent = FALSE, gc = TRUE, earlySignal = TRUE) ... [12:35:48.400] | : . ' , Stopping existing cluster ... [12:35:48.400] | : . ' , ; No pre-existing cluster. Skipping [12:35:48.400] | : . ' , Stopping existing cluster ... done [12:35:48.401] | : . ' , Number of workers: 1 [12:35:48.408] | : . ' , Generated workers UUID [12:35:48.409] | : . ' , Workers UUID: 'd92d6ef508e0d05cde805d599c01ec85' [12:35:48.409] | : . ' ClusterFutureBackend(..., persistent = FALSE, gc = TRUE, earlySignal = TRUE) ... done [12:35:48.409] | : . ' Backend: <'ClusterFutureBackend', 'MultiprocessFutureBackend', 'FutureBackend', 'environment'> [12:35:48.410] | : . makeFutureBackend() ... done [12:35:48.410] | : plan(): plan_init() of 'tweaked', 'cluster', 'multiprocess', 'future', 'function' ... done [12:35:48.410] | : nbrOfWorkers(NULL) ... [12:35:48.410] | : . List of 4 [12:35:48.410] | : . $ : language plan_set(newStack, skip = .skip, cleanup = .cleanup, init = .init, debug = debug) [12:35:48.410] | : . $ : language with_assert({ nbrOfWorkers <- nbrOfWorkers() ... [12:35:48.410] | : . $ : language nbrOfWorkers() [12:35:48.410] | : . $ : language nbrOfWorkers.NULL() [12:35:48.412] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:48.413] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:48.413] | : . Number of workers: 1 [12:35:48.413] | : nbrOfWorkers(NULL) ... done [12:35:48.413] | : plan(): nbrOfWorkers() = 1 [12:35:48.413] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... done [12:35:48.416] plan(<'call'>, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:48.541] plan(<'name'>, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:48.542] | plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:48.542] | : plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... [12:35:48.542] | : . all.equal() for FutureStrategyList ... [12:35:48.543] | : . ' New stack: [12:35:48.543] | : . ' List of 1 [12:35:48.543] | : . ' $ :function (..., envir = parent.frame()) [12:35:48.543] | : . ' ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:48.543] | : . ' ..- attr(*, "init")= logi TRUE [12:35:48.543] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:48.543] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.543] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.543] | : . ' ..- attr(*, "call")= language plan(sequential) [12:35:48.543] | : . ' - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:48.548] | : . ' Old stack: [12:35:48.548] | : . ' List of 1 [12:35:48.548] | : . ' $ :function (..., workers = list(list(con = 4L, host = "localhost", rank = 0L, [12:35:48.548] | : . ' session_info = list(process = list(pid = 143648L), r = list(platform = "x86_64-w64-mingw32", [12:35:48.548] | : . ' arch = "x86_64", os = "mingw32", crt = "ucrt", system = "x86_64, mingw32", [12:35:48.548] | : . ' status = "Under development (unstable)", major = "4", minor = "6.0", [12:35:48.548] | : . ' year = "2025", month = "07", day = "28", `svn rev` = "88462", language = "R", [12:35:48.548] | : . ' version.string = "R Under development (unstable) (2025-07-28 r88462 ucrt)", [12:35:48.548] | : . ' nickname = "Unsuffered Consequences", os.type = "windows"), system = list( [12:35:48.548] | : . ' sysname = "Windows", release = "Server x64", version = "build 20348", [12:35:48.548] | : . ' nodename = "CRANWIN3", machine = "x86-64", login = "CRAN", user = "CRAN", [12:35:48.548] | : . ' effective_user = "CRAN", udomain = "CRANWIN3"), l10n = list(MBCS = TRUE, [12:35:48.548] | : . ' `UTF-8` = TRUE, `Latin-1` = FALSE, codepage = 65001L, system.codepage = 65001L), [12:35:48.548] | : . ' extSoftVersion = c(zlib = "1.3.1", bzlib = "1.0.8, 13-Jul-2019", [12:35:48.548] | : . ' xz = "5.8.1", libdeflate = "1.24", zstd = "1.5.7", PCRE = "10.45 2025-02-05", [12:35:48.548] | : . ' ICU = "77.1", TRE = "TRE 0.8.0 R_fixes (BSD)", iconv = "win_iconv", [12:35:48.548] | : . ' readline = "", BLAS = ""), pwd = "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests", [12:35:48.548] | : . ' tempdir = "D:\\temp\\2025_07_29_12_30_17_31216\\Rtmp0A02Uh", libs = c("D:/temp/2025_07_29_12_30_17_31216/RtmpU917xP/RLIBS_1bc403705485f", [12:35:48.548] | : . ' ..- attr(*, "class")= chr [1:5] "tweaked" "cluster" "multiprocess" "future" ... [12:35:48.548] | : . ' ..- attr(*, "init")= chr "done" [12:35:48.548] | : . ' ..- attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [12:35:48.548] | : . ' earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [12:35:48.548] | : . ' .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [12:35:48.548] | : . ' ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [12:35:48.548] | : . ' ..- attr(*, "tweaks")=List of 1 [12:35:48.548] | : . ' .. ..$ workers:List of 1 [12:35:48.548] | : . ' .. .. ..$ :List of 4 [12:35:48.548] | : . ' .. .. .. ..$ con : 'sockconn' int 4 [12:35:48.548] | : . ' .. .. .. .. ..- attr(*, "conn_id")= [12:35:48.548] | : . ' .. .. .. ..$ host : chr "localhost" [12:35:48.548] | : . ' .. .. .. .. ..- attr(*, "localhost")= logi TRUE [12:35:48.548] | : . ' .. .. .. ..$ rank : int 0 [12:35:48.548] | : . ' .. .. .. ..$ session_info:List of 9 [12:35:48.548] | : . ' .. .. .. .. ..$ process :List of 1 [12:35:48.548] | : . ' .. .. .. .. .. ..$ pid: int 143648 [12:35:48.548] | : . ' .. .. .. .. ..$ r :List of 16 [12:35:48.548] | : . ' .. .. .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [12:35:48.548] | : . ' .. .. .. .. .. ..$ arch : chr "x86_64" [12:35:48.548] | : . ' .. .. .. .. .. ..$ os : chr "mingw32" [12:35:48.548] | : . ' .. .. .. .. .. ..$ crt : chr "ucrt" [12:35:48.548] | : . ' .. .. .. .. .. ..$ system : chr "x86_64, mingw32" [12:35:48.548] | : . ' .. .. .. .. .. ..$ status : chr "Under development (unstable)" [12:35:48.548] | : . ' .. .. .. .. .. ..$ major : chr "4" [12:35:48.548] | : . ' .. .. .. .. .. ..$ minor : chr "6.0" [12:35:48.548] | : . ' .. .. .. .. .. ..$ year : chr "2025" [12:35:48.548] | : . ' .. .. .. .. .. ..$ month : chr "07" [12:35:48.548] | : . ' .. .. .. .. .. ..$ day : chr "28" [12:35:48.548] | : . ' .. .. .. .. .. ..$ svn rev : chr "88462" [12:35:48.548] | : . ' .. .. .. .. .. ..$ language : chr "R" [12:35:48.548] | : . ' .. .. .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-07-28 r88462 ucrt)" [12:35:48.548] | : . ' .. .. .. .. .. ..$ nickname : chr "Unsuffered Consequences" [12:35:48.548] | : . ' .. .. .. .. .. ..$ os.type : chr "windows" [12:35:48.548] | : . ' .. .. .. .. ..$ system :List of 9 [12:35:48.548] | : . ' .. .. .. .. .. ..$ sysname : chr "Windows" [12:35:48.548] | : . ' .. .. .. .. .. ..$ release : chr "Server x64" [12:35:48.548] | : . ' .. .. .. .. .. ..$ version : chr "build 20348" [12:35:48.548] | : . ' .. .. .. .. .. ..$ nodename : chr "CRANWIN3" [12:35:48.548] | : . ' .. .. .. .. .. ..$ machine : chr "x86-64" [12:35:48.548] | : . ' .. .. .. .. .. ..$ login : chr "CRAN" [12:35:48.548] | : . ' .. .. .. .. .. ..$ user : chr "CRAN" [12:35:48.548] | : . ' .. .. .. .. .. ..$ effective_user: chr "CRAN" [12:35:48.548] | : . ' .. .. .. .. .. ..$ udomain : chr "CRANWIN3" [12:35:48.548] | : . ' .. .. .. .. ..$ l10n :List of 5 [12:35:48.548] | : . ' .. .. .. .. .. ..$ MBCS : logi TRUE [12:35:48.548] | : . ' .. .. .. .. .. ..$ UTF-8 : logi TRUE [12:35:48.548] | : . ' .. .. .. .. .. ..$ Latin-1 : logi FALSE [12:35:48.548] | : . ' .. .. .. .. .. ..$ codepage : int 65001 [12:35:48.548] | : . ' .. .. .. .. .. ..$ system.codepage: int 65001 [12:35:48.548] | : . ' .. .. .. .. ..$ extSoftVersion: Named chr [1:11] "1.3.1" "1.0.8, 13-Jul-2019" "5.8.1" "1.24" ... [12:35:48.548] | : . ' .. .. .. .. .. ..- attr(*, "names")= chr [1:11] "zlib" "bzlib" "xz" "libdeflate" ... [12:35:48.548] | : . ' .. .. .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [12:35:48.548] | : . ' .. .. .. .. ..$ tempdir : chr "D:\\temp\\2025_07_29_12_30_17_31216\\Rtmp0A02Uh" [12:35:48.548] | : . ' .. .. .. .. ..$ libs : chr [1:2] "D:/temp/2025_07_29_12_30_17_31216/RtmpU917xP/RLIBS_1bc403705485f" "D:/RCompile/recent/R/library" [12:35:48.548] | : . ' .. .. .. .. ..$ pkgs : NULL [12:35:48.548] | : . ' .. .. .. ..- attr(*, "options")=List of 35 [12:35:48.548] | : . ' .. .. .. .. ..$ worker : chr "localhost" [12:35:48.548] | : . ' .. .. .. .. .. ..- attr(*, "localhost")= logi TRUE [12:35:48.548] | : . ' .. .. .. .. ..$ master : chr "localhost" [12:35:48.548] | : . ' .. .. .. .. ..$ port : int 24138 [12:35:48.548] | : . ' .. .. .. .. ..$ connectTimeout : num 120 [12:35:48.548] | : . ' .. .. .. .. ..$ timeout : num 120 [12:35:48.548] | : . ' .. .. .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [12:35:48.548] | : . ' .. .. .. .. ..$ homogeneous : logi TRUE [12:35:48.548] | : . ' .. .. .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:95280:CRANWIN3:CRAN"| __truncated__ [12:35:48.548] | : . ' .. .. .. .. ..$ rscript_envs : NULL [12:35:48.548] | : . ' .. .. .. .. ..$ rscript_libs : NULL [12:35:48.548] | : . ' .. .. .. .. ..$ rscript_startup : NULL [12:35:48.548] | : . ' .. .. .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [12:35:48.548] | : . ' .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [12:35:48.548] | : . ' .. .. .. .. ..$ methods : logi TRUE [12:35:48.548] | : . ' .. .. .. .. ..$ socketOptions : chr "no-delay" [12:35:48.548] | : . ' .. .. .. .. ..$ useXDR : logi FALSE [12:35:48.548] | : . ' .. .. .. .. ..$ outfile : chr "/dev/null" [12:35:48.548] | : . ' .. .. .. .. ..$ renice : int NA [12:35:48.548] | : . ' .. .. .. .. ..$ rshcmd : NULL [12:35:48.548] | : . ' .. .. .. .. ..$ user : chr(0) [12:35:48.548] | : . ' .. .. .. .. ..$ revtunnel : logi FALSE [12:35:48.548] | : . ' .. .. .. .. ..$ rshlogfile : NULL [12:35:48.548] | : . ' .. .. .. .. ..$ rshopts : chr(0) [12:35:48.548] | : . ' .. .. .. .. ..$ rank : int 0 [12:35:48.548] | : . ' .. .. .. .. ..$ manual : logi FALSE [12:35:48.548] | : . ' .. .. .. .. ..$ dryrun : logi FALSE [12:35:48.548] | : . ' .. .. .. .. ..$ quiet : logi FALSE [12:35:48.548] | : . ' .. .. .. .. ..$ setup_strategy : chr "parallel" [12:35:48.548] | : . ' .. .. .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [12:35:48.548] | : . ' .. .. .. .. ..$ rshcmd_label : NULL [12:35:48.548] | : . ' .. .. .. .. ..$ rsh_call : NULL [12:35:48.548] | : . ' .. .. .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [12:35:48.548] | : . ' .. .. .. .. ..$ localMachine : logi TRUE [12:35:48.548] | : . ' .. .. .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [12:35:48.548] | : . ' master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [12:35:48.548] | : . ' 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [12:35:48.548] | : . ' 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [12:35:48.548] | : . ' rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [12:35:48.548] | : . ' "cmd", "sh", "none"), default_packages = c("datasets", "utils", [12:35:48.548] | : . ' "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [12:35:48.548] | : . ' socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [12:35:48.548] | : . ' "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [12:35:48.548] | : . ' FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [12:35:48.548] | : . ' NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [12:35:48.548] | : . ' NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [12:35:48.548] | : . ' setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [12:35:48.548] | : . ' "parallel"), calls = getOption2("parallelly.makeNodePSOCK.calls", [12:35:48.548] | : . ' FALSE), action = c("launch", "options"), verbose = FALSE) [12:35:48.548] | : . ' .. .. .. .. ..$ arguments :List of 29 [12:35:48.548] | : . ' .. .. .. .. .. ..$ worker : chr "localhost" [12:35:48.548] | : . ' .. .. .. .. .. ..$ master : NULL [12:35:48.548] | : . ' .. .. .. .. .. ..$ port : int 24138 [12:35:48.548] | : . ' .. .. .. .. .. ..$ connectTimeout : num 120 [12:35:48.548] | : . ' .. .. .. .. .. ..$ timeout : num 120 [12:35:48.548] | : . ' .. .. .. .. .. ..$ rscript : NULL [12:35:48.548] | : . ' .. .. .. .. .. ..$ homogeneous : NULL [12:35:48.548] | : . ' .. .. .. .. .. ..$ rscript_args : NULL [12:35:48.548] | : . ' .. .. .. .. .. ..$ rscript_envs : NULL [12:35:48.548] | : . ' .. .. .. .. .. ..$ rscript_libs : NULL [12:35:48.548] | : . ' .. .. .. .. .. ..$ rscript_startup : NULL [12:35:48.548] | : . ' .. .. .. .. .. ..$ rscript_sh : chr "auto" [12:35:48.548] | : . ' .. .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [12:35:48.548] | : . ' .. .. .. .. .. ..$ methods : logi TRUE [12:35:48.548] | : . ' .. .. .. .. .. ..$ socketOptions : chr "no-delay" [12:35:48.548] | : . ' .. .. .. .. .. ..$ useXDR : logi FALSE [12:35:48.548] | : . ' .. .. .. .. .. ..$ outfile : chr "/dev/null" [12:35:48.548] | : . ' .. .. .. .. .. ..$ renice : int NA [12:35:48.548] | : . ' .. .. .. .. .. ..$ rshcmd : NULL [12:35:48.548] | : . ' .. .. .. .. .. ..$ user : NULL [12:35:48.548] | : . ' .. .. .. .. .. ..$ revtunnel : logi NA [12:35:48.548] | : . ' .. .. .. .. .. ..$ rshlogfile : NULL [12:35:48.548] | : . ' .. .. .. .. .. ..$ rshopts : NULL [12:35:48.548] | : . ' .. .. .. .. .. ..$ rank : int 1 [12:35:48.548] | : . ' .. .. .. .. .. ..$ manual : logi FALSE [12:35:48.548] | : . ' .. .. .. .. .. ..$ dryrun : logi FALSE [12:35:48.548] | : . ' .. .. .. .. .. ..$ quiet : logi FALSE [12:35:48.548] | : . ' .. .. .. .. .. ..$ setup_strategy : chr "parallel" [12:35:48.548] | : . ' .. .. .. .. .. ..$ calls : logi FALSE [12:35:48.548] | : . ' .. .. .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [12:35:48.548] | : . ' .. .. .. ..- attr(*, "calls")=Dotted pair list of 16 [12:35:48.548] | : . ' .. .. .. .. ..$ : language future:::testme("tweak") [12:35:48.548] | : . ' .. .. .. .. ..$ : language source(file.path(path, "run.R")) [12:35:48.548] | : . ' .. .. .. .. ..$ : language withVisible(eval(ei, envir)) [12:35:48.548] | : . ' .. .. .. .. ..$ : language eval(ei, envir) [12:35:48.548] | : . ' .. .. .. .. ..$ : language eval(ei, envir) [12:35:48.548] | : . ' .. .. .. .. ..$ : language source(testme[["script"]], echo = TRUE) [12:35:48.548] | : . ' .. .. .. .. ..$ : language withVisible(eval(ei, envir)) [12:35:48.548] | : . ' .. .. .. .. ..$ : language eval(ei, envir) [12:35:48.548] | : . ' .. .. .. .. ..$ : language eval(ei, envir) [12:35:48.548] | : . ' .. .. .. .. ..$ : language local({ cl <- makeClusterPSOCK(1L) ... [12:35:48.548] | : . ' .. .. .. .. ..$ : language eval.parent(substitute(eval(quote(expr), envir))) [12:35:48.548] | : . ' .. .. .. .. ..$ : language eval(expr, p) [12:35:48.548] | : . ' .. .. .. .. ..$ : language eval(expr, p) [12:35:48.548] | : . ' .. .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [12:35:48.548] | : . ' .. .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [12:35:48.548] | : . ' .. .. .. .. ..$ : language makeClusterPSOCK(1L) [12:35:48.548] | : . ' .. .. .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [12:35:48.548] | : . ' .. .. ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [12:35:48.548] | : . ' ..- attr(*, "call")= language future::plan(future::cluster, workers = cl) [12:35:48.548] | : . ' ..- attr(*, "backend")=Classes 'ClusterFutureBackend', 'MultiprocessFutureBackend', 'FutureBackend', 'environment' [12:35:48.548] | : . ' .. ..- attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [12:35:48.548] | : . ' earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [12:35:48.548] | : . ' .. .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [12:35:48.548] | : . ' - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:48.625] | : . ' Not identical [12:35:48.625] | : . ' all.equal() for future ... [12:35:48.625] | : . ' , List of 2 [12:35:48.625] | : . ' , $ target :function (..., envir = parent.frame()) [12:35:48.625] | : . ' , ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:48.625] | : . ' , ..- attr(*, "init")= logi TRUE [12:35:48.625] | : . ' , ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:48.625] | : . ' , .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.625] | : . ' , ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.625] | : . ' , ..- attr(*, "call")= language plan(sequential) [12:35:48.625] | : . ' , $ current:function (..., workers = list(list(con = 4L, host = "localhost", rank = 0L, [12:35:48.625] | : . ' , session_info = list(process = list(pid = 143648L), r = list(platform = "x86_64-w64-mingw32", [12:35:48.625] | : . ' , arch = "x86_64", os = "mingw32", crt = "ucrt", system = "x86_64, mingw32", [12:35:48.625] | : . ' , status = "Under development (unstable)", major = "4", minor = "6.0", [12:35:48.625] | : . ' , year = "2025", month = "07", day = "28", `svn rev` = "88462", language = "R", [12:35:48.625] | : . ' , version.string = "R Under development (unstable) (2025-07-28 r88462 ucrt)", [12:35:48.625] | : . ' , nickname = "Unsuffered Consequences", os.type = "windows"), system = list( [12:35:48.625] | : . ' , sysname = "Windows", release = "Server x64", version = "build 20348", [12:35:48.625] | : . ' , nodename = "CRANWIN3", machine = "x86-64", login = "CRAN", user = "CRAN", [12:35:48.625] | : . ' , effective_user = "CRAN", udomain = "CRANWIN3"), l10n = list(MBCS = TRUE, [12:35:48.625] | : . ' , `UTF-8` = TRUE, `Latin-1` = FALSE, codepage = 65001L, system.codepage = 65001L), [12:35:48.625] | : . ' , extSoftVersion = c(zlib = "1.3.1", bzlib = "1.0.8, 13-Jul-2019", [12:35:48.625] | : . ' , xz = "5.8.1", libdeflate = "1.24", zstd = "1.5.7", PCRE = "10.45 2025-02-05", [12:35:48.625] | : . ' , ICU = "77.1", TRE = "TRE 0.8.0 R_fixes (BSD)", iconv = "win_iconv", [12:35:48.625] | : . ' , readline = "", BLAS = ""), pwd = "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests", [12:35:48.625] | : . ' , tempdir = "D:\\temp\\2025_07_29_12_30_17_31216\\Rtmp0A02Uh", libs = c("D:/temp/2025_07_29_12_30_17_31216/RtmpU917xP/RLIBS_1bc403705485f", [12:35:48.625] | : . ' , ..- attr(*, "class")= chr [1:5] "tweaked" "cluster" "multiprocess" "future" ... [12:35:48.625] | : . ' , ..- attr(*, "init")= chr "done" [12:35:48.625] | : . ' , ..- attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [12:35:48.625] | : . ' , earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [12:35:48.625] | : . ' , .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [12:35:48.625] | : . ' , ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [12:35:48.625] | : . ' , ..- attr(*, "tweaks")=List of 1 [12:35:48.625] | : . ' , .. ..$ workers:List of 1 [12:35:48.625] | : . ' , .. .. ..$ :List of 4 [12:35:48.625] | : . ' , .. .. .. ..$ con : 'sockconn' int 4 [12:35:48.625] | : . ' , .. .. .. .. ..- attr(*, "conn_id")= [12:35:48.625] | : . ' , .. .. .. ..$ host : chr "localhost" [12:35:48.625] | : . ' , .. .. .. .. ..- attr(*, "localhost")= logi TRUE [12:35:48.625] | : . ' , .. .. .. ..$ rank : int 0 [12:35:48.625] | : . ' , .. .. .. ..$ session_info:List of 9 [12:35:48.625] | : . ' , .. .. .. .. ..$ process :List of 1 [12:35:48.625] | : . ' , .. .. .. .. .. ..$ pid: int 143648 [12:35:48.625] | : . ' , .. .. .. .. ..$ r :List of 16 [12:35:48.625] | : . ' , .. .. .. .. .. ..$ platform : chr "x86_64-w64-mingw32" [12:35:48.625] | : . ' , .. .. .. .. .. ..$ arch : chr "x86_64" [12:35:48.625] | : . ' , .. .. .. .. .. ..$ os : chr "mingw32" [12:35:48.625] | : . ' , .. .. .. .. .. ..$ crt : chr "ucrt" [12:35:48.625] | : . ' , .. .. .. .. .. ..$ system : chr "x86_64, mingw32" [12:35:48.625] | : . ' , .. .. .. .. .. ..$ status : chr "Under development (unstable)" [12:35:48.625] | : . ' , .. .. .. .. .. ..$ major : chr "4" [12:35:48.625] | : . ' , .. .. .. .. .. ..$ minor : chr "6.0" [12:35:48.625] | : . ' , .. .. .. .. .. ..$ year : chr "2025" [12:35:48.625] | : . ' , .. .. .. .. .. ..$ month : chr "07" [12:35:48.625] | : . ' , .. .. .. .. .. ..$ day : chr "28" [12:35:48.625] | : . ' , .. .. .. .. .. ..$ svn rev : chr "88462" [12:35:48.625] | : . ' , .. .. .. .. .. ..$ language : chr "R" [12:35:48.625] | : . ' , .. .. .. .. .. ..$ version.string: chr "R Under development (unstable) (2025-07-28 r88462 ucrt)" [12:35:48.625] | : . ' , .. .. .. .. .. ..$ nickname : chr "Unsuffered Consequences" [12:35:48.625] | : . ' , .. .. .. .. .. ..$ os.type : chr "windows" [12:35:48.625] | : . ' , .. .. .. .. ..$ system :List of 9 [12:35:48.625] | : . ' , .. .. .. .. .. ..$ sysname : chr "Windows" [12:35:48.625] | : . ' , .. .. .. .. .. ..$ release : chr "Server x64" [12:35:48.625] | : . ' , .. .. .. .. .. ..$ version : chr "build 20348" [12:35:48.625] | : . ' , .. .. .. .. .. ..$ nodename : chr "CRANWIN3" [12:35:48.625] | : . ' , .. .. .. .. .. ..$ machine : chr "x86-64" [12:35:48.625] | : . ' , .. .. .. .. .. ..$ login : chr "CRAN" [12:35:48.625] | : . ' , .. .. .. .. .. ..$ user : chr "CRAN" [12:35:48.625] | : . ' , .. .. .. .. .. ..$ effective_user: chr "CRAN" [12:35:48.625] | : . ' , .. .. .. .. .. ..$ udomain : chr "CRANWIN3" [12:35:48.625] | : . ' , .. .. .. .. ..$ l10n :List of 5 [12:35:48.625] | : . ' , .. .. .. .. .. ..$ MBCS : logi TRUE [12:35:48.625] | : . ' , .. .. .. .. .. ..$ UTF-8 : logi TRUE [12:35:48.625] | : . ' , .. .. .. .. .. ..$ Latin-1 : logi FALSE [12:35:48.625] | : . ' , .. .. .. .. .. ..$ codepage : int 65001 [12:35:48.625] | : . ' , .. .. .. .. .. ..$ system.codepage: int 65001 [12:35:48.625] | : . ' , .. .. .. .. ..$ extSoftVersion: Named chr [1:11] "1.3.1" "1.0.8, 13-Jul-2019" "5.8.1" "1.24" ... [12:35:48.625] | : . ' , .. .. .. .. .. ..- attr(*, "names")= chr [1:11] "zlib" "bzlib" "xz" "libdeflate" ... [12:35:48.625] | : . ' , .. .. .. .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" [12:35:48.625] | : . ' , .. .. .. .. ..$ tempdir : chr "D:\\temp\\2025_07_29_12_30_17_31216\\Rtmp0A02Uh" [12:35:48.625] | : . ' , .. .. .. .. ..$ libs : chr [1:2] "D:/temp/2025_07_29_12_30_17_31216/RtmpU917xP/RLIBS_1bc403705485f" "D:/RCompile/recent/R/library" [12:35:48.625] | : . ' , .. .. .. .. ..$ pkgs : NULL [12:35:48.625] | : . ' , .. .. .. ..- attr(*, "options")=List of 35 [12:35:48.625] | : . ' , .. .. .. .. ..$ worker : chr "localhost" [12:35:48.625] | : . ' , .. .. .. .. .. ..- attr(*, "localhost")= logi TRUE [12:35:48.625] | : . ' , .. .. .. .. ..$ master : chr "localhost" [12:35:48.625] | : . ' , .. .. .. .. ..$ port : int 24138 [12:35:48.625] | : . ' , .. .. .. .. ..$ connectTimeout : num 120 [12:35:48.625] | : . ' , .. .. .. .. ..$ timeout : num 120 [12:35:48.625] | : . ' , .. .. .. .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [12:35:48.625] | : . ' , .. .. .. .. ..$ homogeneous : logi TRUE [12:35:48.625] | : . ' , .. .. .. .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=test-tweak.R:95280:CRANWIN3:CRAN"| __truncated__ [12:35:48.625] | : . ' , .. .. .. .. ..$ rscript_envs : NULL [12:35:48.625] | : . ' , .. .. .. .. ..$ rscript_libs : NULL [12:35:48.625] | : . ' , .. .. .. .. ..$ rscript_startup : NULL [12:35:48.625] | : . ' , .. .. .. .. ..$ rscript_sh : chr [1:2] "cmd" "cmd" [12:35:48.625] | : . ' , .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [12:35:48.625] | : . ' , .. .. .. .. ..$ methods : logi TRUE [12:35:48.625] | : . ' , .. .. .. .. ..$ socketOptions : chr "no-delay" [12:35:48.625] | : . ' , .. .. .. .. ..$ useXDR : logi FALSE [12:35:48.625] | : . ' , .. .. .. .. ..$ outfile : chr "/dev/null" [12:35:48.625] | : . ' , .. .. .. .. ..$ renice : int NA [12:35:48.625] | : . ' , .. .. .. .. ..$ rshcmd : NULL [12:35:48.625] | : . ' , .. .. .. .. ..$ user : chr(0) [12:35:48.625] | : . ' , .. .. .. .. ..$ revtunnel : logi FALSE [12:35:48.625] | : . ' , .. .. .. .. ..$ rshlogfile : NULL [12:35:48.625] | : . ' , .. .. .. .. ..$ rshopts : chr(0) [12:35:48.625] | : . ' , .. .. .. .. ..$ rank : int 0 [12:35:48.625] | : . ' , .. .. .. .. ..$ manual : logi FALSE [12:35:48.625] | : . ' , .. .. .. .. ..$ dryrun : logi FALSE [12:35:48.625] | : . ' , .. .. .. .. ..$ quiet : logi FALSE [12:35:48.625] | : . ' , .. .. .. .. ..$ setup_strategy : chr "parallel" [12:35:48.625] | : . ' , .. .. .. .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [12:35:48.625] | : . ' , .. .. .. .. ..$ rshcmd_label : NULL [12:35:48.625] | : . ' , .. .. .. .. ..$ rsh_call : NULL [12:35:48.625] | : . ' , .. .. .. .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [12:35:48.625] | : . ' , .. .. .. .. ..$ localMachine : logi TRUE [12:35:48.625] | : . ' , .. .. .. .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [12:35:48.625] | : . ' , master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [12:35:48.625] | : . ' , 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [12:35:48.625] | : . ' , 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [12:35:48.625] | : . ' , rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [12:35:48.625] | : . ' , "cmd", "sh", "none"), default_packages = c("datasets", "utils", [12:35:48.625] | : . ' , "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [12:35:48.625] | : . ' , socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [12:35:48.625] | : . ' , "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [12:35:48.625] | : . ' , FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [12:35:48.625] | : . ' , NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [12:35:48.625] | : . ' , NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [12:35:48.625] | : . ' , setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [12:35:48.625] | : . ' , "parallel"), calls = getOption2("parallelly.makeNodePSOCK.calls", [12:35:48.625] | : . ' , FALSE), action = c("launch", "options"), verbose = FALSE) [12:35:48.625] | : . ' , .. .. .. .. ..$ arguments :List of 29 [12:35:48.625] | : . ' , .. .. .. .. .. ..$ worker : chr "localhost" [12:35:48.625] | : . ' , .. .. .. .. .. ..$ master : NULL [12:35:48.625] | : . ' , .. .. .. .. .. ..$ port : int 24138 [12:35:48.625] | : . ' , .. .. .. .. .. ..$ connectTimeout : num 120 [12:35:48.625] | : . ' , .. .. .. .. .. ..$ timeout : num 120 [12:35:48.625] | : . ' , .. .. .. .. .. ..$ rscript : NULL [12:35:48.625] | : . ' , .. .. .. .. .. ..$ homogeneous : NULL [12:35:48.625] | : . ' , .. .. .. .. .. ..$ rscript_args : NULL [12:35:48.625] | : . ' , .. .. .. .. .. ..$ rscript_envs : NULL [12:35:48.625] | : . ' , .. .. .. .. .. ..$ rscript_libs : NULL [12:35:48.625] | : . ' , .. .. .. .. .. ..$ rscript_startup : NULL [12:35:48.625] | : . ' , .. .. .. .. .. ..$ rscript_sh : chr "auto" [12:35:48.625] | : . ' , .. .. .. .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [12:35:48.625] | : . ' , .. .. .. .. .. ..$ methods : logi TRUE [12:35:48.625] | : . ' , .. .. .. .. .. ..$ socketOptions : chr "no-delay" [12:35:48.625] | : . ' , .. .. .. .. .. ..$ useXDR : logi FALSE [12:35:48.625] | : . ' , .. .. .. .. .. ..$ outfile : chr "/dev/null" [12:35:48.625] | : . ' , .. .. .. .. .. ..$ renice : int NA [12:35:48.625] | : . ' , .. .. .. .. .. ..$ rshcmd : NULL [12:35:48.625] | : . ' , .. .. .. .. .. ..$ user : NULL [12:35:48.625] | : . ' , .. .. .. .. .. ..$ revtunnel : logi NA [12:35:48.625] | : . ' , .. .. .. .. .. ..$ rshlogfile : NULL [12:35:48.625] | : . ' , .. .. .. .. .. ..$ rshopts : NULL [12:35:48.625] | : . ' , .. .. .. .. .. ..$ rank : int 1 [12:35:48.625] | : . ' , .. .. .. .. .. ..$ manual : logi FALSE [12:35:48.625] | : . ' , .. .. .. .. .. ..$ dryrun : logi FALSE [12:35:48.625] | : . ' , .. .. .. .. .. ..$ quiet : logi FALSE [12:35:48.625] | : . ' , .. .. .. .. .. ..$ setup_strategy : chr "parallel" [12:35:48.625] | : . ' , .. .. .. .. .. ..$ calls : logi FALSE [12:35:48.625] | : . ' , .. .. .. .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [12:35:48.625] | : . ' , .. .. .. ..- attr(*, "calls")=Dotted pair list of 16 [12:35:48.625] | : . ' , .. .. .. .. ..$ : language future:::testme("tweak") [12:35:48.625] | : . ' , .. .. .. .. ..$ : language source(file.path(path, "run.R")) [12:35:48.625] | : . ' , .. .. .. .. ..$ : language withVisible(eval(ei, envir)) [12:35:48.625] | : . ' , .. .. .. .. ..$ : language eval(ei, envir) [12:35:48.625] | : . ' , .. .. .. .. ..$ : language eval(ei, envir) [12:35:48.625] | : . ' , .. .. .. .. ..$ : language source(testme[["script"]], echo = TRUE) [12:35:48.625] | : . ' , .. .. .. .. ..$ : language withVisible(eval(ei, envir)) [12:35:48.625] | : . ' , .. .. .. .. ..$ : language eval(ei, envir) [12:35:48.625] | : . ' , .. .. .. .. ..$ : language eval(ei, envir) [12:35:48.625] | : . ' , .. .. .. .. ..$ : language local({ cl <- makeClusterPSOCK(1L) ... [12:35:48.625] | : . ' , .. .. .. .. ..$ : language eval.parent(substitute(eval(quote(expr), envir))) [12:35:48.625] | : . ' , .. .. .. .. ..$ : language eval(expr, p) [12:35:48.625] | : . ' , .. .. .. .. ..$ : language eval(expr, p) [12:35:48.625] | : . ' , .. .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [12:35:48.625] | : . ' , .. .. .. .. ..$ : language eval(quote({ cl <- makeClusterPSOCK(1L) ... [12:35:48.625] | : . ' , .. .. .. .. ..$ : language makeClusterPSOCK(1L) [12:35:48.625] | : . ' , .. .. .. ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" [12:35:48.625] | : . ' , .. .. ..- attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" [12:35:48.625] | : . ' , ..- attr(*, "call")= language future::plan(future::cluster, workers = cl) [12:35:48.625] | : . ' , ..- attr(*, "backend")=Classes 'ClusterFutureBackend', 'MultiprocessFutureBackend', 'FutureBackend', 'environment' [12:35:48.625] | : . ' , .. ..- attr(*, "factory")=function (workers = availableWorkers(constraints = "connections"), gc = TRUE, [12:35:48.625] | : . ' , earlySignal = TRUE, interrupts = FALSE, persistent = FALSE, ...) [12:35:48.625] | : . ' , .. .. ..- attr(*, "tweakable")= chr [1:9] "gc" "earlySignal" "interrupts" "persistent" ... [12:35:48.712] | : . ' , Formals differ [12:35:48.712] | : . ' all.equal() for future ... done [12:35:48.713] | : . ' Future strategies differ at level 1 [12:35:48.713] | : . all.equal() for FutureStrategyList ... done [12:35:48.713] | : . plan(): Setting new future backend stack: [12:35:48.714] | : . List of future strategies: [12:35:48.714] | : . 1. sequential: [12:35:48.714] | : . - args: function (..., envir = parent.frame(), workers = "") [12:35:48.714] | : . - tweaked: FALSE [12:35:48.714] | : . - call: plan(sequential) [12:35:48.715] | : . List of 1 [12:35:48.715] | : . $ :function (..., envir = parent.frame()) [12:35:48.715] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:48.715] | : . ..- attr(*, "init")= logi TRUE [12:35:48.715] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:48.715] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.715] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.715] | : . ..- attr(*, "call")= language plan(sequential) [12:35:48.715] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:48.720] | : . plan(): plan_cleanup(<'tweaked', 'cluster', 'multiprocess', 'future', 'function'>, cleanup = NA) ... [12:35:48.720] | : . ' plan("next", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:48.721] | : . ' , Getting current ("next") strategy: 'FutureStrategy', 'tweaked', 'cluster', 'multiprocess', 'future', 'function' [12:35:48.721] | : . ' plan("next", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:48.721] | : . ' stopWorkers() for ClusterFutureBackend ... [12:35:48.722] | : . ' , Interrupt active futures ... [12:35:48.723] | : . ' , ; Number of futures: 0 [12:35:48.724] | : . ' , Interrupt active futures ... done [12:35:48.724] | : . ' , Clear future registry ... [12:35:48.725] | : . ' , Clear future registry ... done [12:35:48.725] | : . ' , Stop cluster workers ... [12:35:48.725] | : . ' , ; Stopping existing cluster ... [12:35:48.726] | : . ' , ; ` No pre-existing cluster. Skipping [12:35:48.726] | : . ' , ; Stopping existing cluster ... done [12:35:48.726] | : . ' , Stop cluster workers ... done [12:35:48.727] | : . ' stopWorkers() for ClusterFutureBackend ... done [12:35:48.727] | : . ' Legacy shutdown of cluster workers ... [12:35:48.727] | : . ' , Stopping existing cluster ... [12:35:48.727] | : . ' , ; No pre-existing cluster. Skipping [12:35:48.728] | : . ' , Stopping existing cluster ... done [12:35:48.728] | : . ' Legacy shutdown of cluster workers ... done [12:35:48.728] | : . plan(): plan_cleanup(<'tweaked', 'cluster', 'multiprocess', 'future', 'function'>, cleanup = NA) ... done [12:35:48.729] | : . plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... [12:35:48.729] | : . ' function (..., envir = parent.frame()) [12:35:48.729] | : . ' - attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:48.729] | : . ' - attr(*, "init")= logi TRUE [12:35:48.729] | : . ' - attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:48.729] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.729] | : . ' - attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.729] | : . ' - attr(*, "call")= language plan(sequential) [12:35:48.733] | : . ' init: TRUE [12:35:48.733] | : . ' makeFutureBackend() ... [12:35:48.734] | : . ' , Backend function: <'NULL'> [12:35:48.734] | : . ' , Evaluator tweak arguments: [n=0] [12:35:48.734] | : . ' , list() [12:35:48.735] | : . ' , Evaluator formal arguments: [n=0] [12:35:48.735] | : . ' , list() [12:35:48.736] | : . ' , Backend factory arguments: [n=0] [12:35:48.736] | : . ' , NULL [12:35:48.737] | : . ' , Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [12:35:48.737] | : . ' makeFutureBackend() ... done [12:35:48.737] | : . plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... done [12:35:48.738] | : . nbrOfWorkers(NULL) ... [12:35:48.738] | : . ' List of 4 [12:35:48.738] | : . ' $ : language plan_set(strategy, skip = .skip, cleanup = .cleanup, init = .init, debug = debug) [12:35:48.738] | : . ' $ : language with_assert({ nbrOfWorkers <- nbrOfWorkers() ... [12:35:48.738] | : . ' $ : language nbrOfWorkers() [12:35:48.738] | : . ' $ : language nbrOfWorkers.NULL() [12:35:48.741] | : . ' plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:48.741] | : . ' plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:48.741] | : . ' Number of workers: 1 [12:35:48.742] | : . nbrOfWorkers(NULL) ... done [12:35:48.742] | : . plan(): nbrOfWorkers() = 1 [12:35:48.742] | : plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... done [12:35:48.742] | plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:48.743] 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) [12:35:48.744] plan(<'name'>, .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:48.744] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... [12:35:48.744] | : all.equal() for FutureStrategyList ... [12:35:48.745] | : . New stack: [12:35:48.745] | : . List of 1 [12:35:48.745] | : . $ :function (..., envir = parent.frame()) [12:35:48.745] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:48.745] | : . ..- attr(*, "init")= logi TRUE [12:35:48.745] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:48.745] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.745] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.745] | : . ..- attr(*, "call")= language plan(sequential) [12:35:48.745] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:48.750] | : . Old stack: [12:35:48.750] | : . List of 1 [12:35:48.750] | : . $ :function (..., envir = parent.frame()) [12:35:48.750] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:48.750] | : . ..- attr(*, "init")= chr "done" [12:35:48.750] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:48.750] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.750] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.750] | : . ..- attr(*, "call")= language plan(sequential) [12:35:48.750] | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [12:35:48.750] | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:48.750] | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.750] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:48.757] | : . Not identical [12:35:48.757] | : . all.equal() for future ... [12:35:48.757] | : . ' List of 2 [12:35:48.757] | : . ' $ target :function (..., envir = parent.frame()) [12:35:48.757] | : . ' ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:48.757] | : . ' ..- attr(*, "init")= logi TRUE [12:35:48.757] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:48.757] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.757] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.757] | : . ' ..- attr(*, "call")= language plan(sequential) [12:35:48.757] | : . ' $ current:function (..., envir = parent.frame()) [12:35:48.757] | : . ' ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:48.757] | : . ' ..- attr(*, "init")= chr "done" [12:35:48.757] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:48.757] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.757] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.757] | : . ' ..- attr(*, "call")= language plan(sequential) [12:35:48.757] | : . ' ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [12:35:48.757] | : . ' .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:48.757] | : . ' .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.768] | : . all.equal() for future ... done [12:35:48.768] | : all.equal() for FutureStrategyList ... done [12:35:48.769] | : plan(): Skip setting new future backend stack because it is the same as the current one: [12:35:48.769] | : List of future strategies: [12:35:48.769] | : 1. sequential: [12:35:48.769] | : - args: function (..., envir = parent.frame(), workers = "") [12:35:48.769] | : - tweaked: FALSE [12:35:48.769] | : - call: plan(sequential) [12:35:48.770] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... done [12:35:48.770] plan(<'name'>, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done > a <- 0 > x %<-% { + a <- 1 + a + } [12:35:48.772] future(..., label = NULL) ... [12:35:48.773] | lazy: FALSE [12:35:48.773] | stdout: TRUE [12:35:48.773] | conditions: [n=1] 'condition' [12:35:48.773] | gc: FALSE [12:35:48.774] | earlySignal: FALSE [12:35:48.779] | getGlobalsAndPackages() ... [12:35:48.779] | : Searching for globals ... [12:35:48.804] | : . globals found: [2] '{', '<-' [12:35:48.805] | : Searching for globals ... done [12:35:48.805] | : Resolving globals: FALSE [12:35:48.805] | : Search for packages associated with the globals ... [12:35:48.806] | : . Packages associated with globals: [1] 'base' [12:35:48.807] | : . Packages: [1] 'base' [12:35:48.807] | : Search for packages associated with the globals ... done [12:35:48.807] | : Packages after dropping 'base': [0] [12:35:48.807] | : globals: [0] [12:35:48.808] | : packages: [0] [12:35:48.808] | getGlobalsAndPackages() ... done [12:35:48.809] | run() for 'Future' () ... [12:35:48.810] | : state: 'created' [12:35:48.810] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:48.810] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:48.811] | : Using SequentialFutureBackend ... [12:35:48.811] | : . Number of futures since start: 0 (0 created, 0 launched, 0 finished) [12:35:48.811] | : . Launching futures ... [12:35:48.811] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [12:35:48.812] | : . ' , getFutureData() ... [12:35:48.812] | : . ' , ; getFutureCore() ... [12:35:48.812] | : . ' , ; ` Packages needed by the future expression (n = 0): [12:35:48.812] | : . ' , ; getFutureCore() ... done [12:35:48.813] | : . ' , ; getFutureCapture() ... [12:35:48.813] | : . ' , ; getFutureCapture() ... done [12:35:48.813] | : . ' , ; getFutureContext() ... [12:35:48.813] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:48.814] | : . ' , ; ` | Getting stack without first backend: [n=0] [12:35:48.814] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:48.814] | : . ' , ; ` Packages needed by future backend (n = 0): [12:35:48.814] | : . ' , ; getFutureContext() ... done [12:35:48.814] | : . ' , getFutureData() ... done [12:35:48.818] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:48.818] | : . ' , ; Getting full stack: [n=1] 'sequential', 'uniprocess', 'future', 'function' [12:35:48.818] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:48.819] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [12:35:48.819] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [12:35:48.819] | : . ' , ; ` all.equal() for FutureStrategyList ... [12:35:48.820] | : . ' , ; ` | New stack: [12:35:48.820] | : . ' , ; ` | List of 1 [12:35:48.820] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [12:35:48.820] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:48.820] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [12:35:48.820] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:48.820] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.820] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.820] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [12:35:48.820] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:48.823] | : . ' , ; ` | Old stack: [12:35:48.824] | : . ' , ; ` | List of 1 [12:35:48.824] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [12:35:48.824] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:48.824] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [12:35:48.824] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:48.824] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.824] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.824] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential) [12:35:48.824] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [12:35:48.824] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:48.824] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.824] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:48.828] | : . ' , ; ` | Not identical [12:35:48.828] | : . ' , ; ` | all.equal() for future ... [12:35:48.828] | : . ' , ; ` | : List of 2 [12:35:48.828] | : . ' , ; ` | : $ target :function (..., envir = parent.frame()) [12:35:48.828] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:48.828] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [12:35:48.828] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:48.828] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.828] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.828] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [12:35:48.828] | : . ' , ; ` | : $ current:function (..., envir = parent.frame()) [12:35:48.828] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:48.828] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [12:35:48.828] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:48.828] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.828] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.828] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [12:35:48.828] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [12:35:48.828] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:48.828] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.923] | : . ' , ; ` | all.equal() for future ... done [12:35:48.923] | : . ' , ; ` all.equal() for FutureStrategyList ... done [12:35:48.923] | : . ' , ; ` plan(): Skip setting new future backend stack because it is the same as the current one: [12:35:48.924] | : . ' , ; ` List of future strategies: [12:35:48.924] | : . ' , ; ` 1. sequential: [12:35:48.924] | : . ' , ; ` - args: function (..., envir = parent.frame(), workers = "") [12:35:48.924] | : . ' , ; ` - tweaked: FALSE [12:35:48.924] | : . ' , ; ` - call: plan(sequential) [12:35:48.925] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [12:35:48.925] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [12:35:48.931] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [12:35:48.932] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [12:35:48.932] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [12:35:48.932] | : . ' , ; ` | all.equal() for FutureStrategyList ... [12:35:48.932] | : . ' , ; ` | : New stack: [12:35:48.933] | : . ' , ; ` | : List of 1 [12:35:48.933] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [12:35:48.933] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:48.933] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [12:35:48.933] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:48.933] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.933] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.933] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [12:35:48.933] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [12:35:48.933] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:48.933] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.933] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:48.946] | : . ' , ; ` | : Old stack: [12:35:48.947] | : . ' , ; ` | : List of 1 [12:35:48.947] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [12:35:48.947] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:48.947] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [12:35:48.947] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:48.947] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.947] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.947] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential) [12:35:48.947] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [12:35:48.947] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:48.947] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.947] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:48.954] | : . ' , ; ` | : Identical [12:35:48.954] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [12:35:48.954] | : . ' , ; ` | plan(): Skip setting new future backend stack because it is the same as the current one: [12:35:48.955] | : . ' , ; ` | List of future strategies: [12:35:48.955] | : . ' , ; ` | 1. sequential: [12:35:48.955] | : . ' , ; ` | - args: function (..., envir = parent.frame(), workers = "") [12:35:48.955] | : . ' , ; ` | - tweaked: FALSE [12:35:48.955] | : . ' , ; ` | - call: plan(sequential) [12:35:48.956] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [12:35:48.956] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [12:35:48.957] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [12:35:48.964] | : . ' , SequentialFuture started (and completed) [12:35:48.965] | : . ' , signalConditions() ... [12:35:48.965] | : . ' , ; include = 'immediateCondition' [12:35:48.966] | : . ' , ; exclude = [12:35:48.966] | : . ' , ; resignal = FALSE [12:35:48.966] | : . ' , ; Number of conditions: 6 [12:35:48.967] | : . ' , ; int 6 [12:35:48.968] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [12:35:48.968] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [12:35:48.968] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [12:35:48.969] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [12:35:48.969] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [12:35:48.969] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [12:35:48.970] | : . ' , signalConditions() ... done [12:35:48.970] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [12:35:48.970] | : . Launching futures ... done [12:35:48.971] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [12:35:48.971] | : Using SequentialFutureBackend ... done [12:35:48.971] | run() for 'Future' () ... done [12:35:48.972] future(..., label = NULL) ... done > print(x) [12:35:48.973] value() for SequentialFuture () ... [12:35:48.974] | signalConditions() ... [12:35:48.974] | : include = 'immediateCondition' [12:35:48.974] | : exclude = [12:35:48.975] | : resignal = FALSE [12:35:48.975] | : Number of conditions: 6 [12:35:48.975] | : int 6 [12:35:48.976] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [12:35:48.977] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [12:35:48.977] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [12:35:48.977] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [12:35:48.978] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [12:35:48.978] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [12:35:48.978] | signalConditions() ... done [12:35:48.978] | relay stdout ... [12:35:48.979] | relay stdout ... done [12:35:48.979] | check for misuse ... [12:35:48.979] | check for misuse ... done [12:35:48.980] | relay conditions ... [12:35:48.980] | : Future state: 'finished' [12:35:48.980] | : signalConditions() ... [12:35:48.981] | : . include = 'condition' [12:35:48.981] | : . exclude = 'immediateCondition' [12:35:48.981] | : . resignal = TRUE [12:35:48.981] | : . Number of conditions: 6 [12:35:48.982] | : . int 6 [12:35:48.983] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [12:35:48.983] | : . Condition #1: 'simpleMessage', 'message', 'condition' [12:35:48.816] | : . ' , attachPackages() ... [12:35:48.983] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [12:35:48.984] | : . Condition #2: 'simpleMessage', 'message', 'condition' [12:35:48.816] | : . ' , ; packages: [n=1] 'future' [12:35:48.984] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [12:35:48.984] | : . Condition #3: 'simpleMessage', 'message', 'condition' [12:35:48.817] | : . ' , attachPackages() ... done [12:35:48.985] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [12:35:48.985] | : . Condition #4: 'simpleMessage', 'message', 'condition' [12:35:48.817] | : . ' , attachPackages() ... [12:35:48.985] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [12:35:48.986] | : . Condition #5: 'simpleMessage', 'message', 'condition' [12:35:48.817] | : . ' , ; packages: [n=0] [12:35:48.986] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [12:35:48.986] | : . Condition #6: 'simpleMessage', 'message', 'condition' [12:35:48.817] | : . ' , attachPackages() ... done [12:35:48.987] | : signalConditions() ... done [12:35:48.987] | relay conditions ... done [12:35:48.987] value() for SequentialFuture () ... done [1] 1 > stopifnot(a == 0, x == 1) > plan(sequential, abc = FALSE) [12:35:48.988] plan(<'name'>, .skip = FALSE, .cleanup = NA, .init = TRUE) ... Warning: Detected 1 unknown future arguments: 'abc' [12:35:48.990] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... [12:35:48.990] | : all.equal() for FutureStrategyList ... [12:35:48.990] | : . New stack: [12:35:48.990] | : . List of 1 [12:35:48.990] | : . $ :function (..., abc = FALSE, envir = parent.frame()) [12:35:48.990] | : . ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [12:35:48.990] | : . ..- attr(*, "init")= logi TRUE [12:35:48.990] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:48.990] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.990] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.990] | : . ..- attr(*, "tweaks")=List of 1 [12:35:48.990] | : . .. ..$ abc: logi FALSE [12:35:48.990] | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [12:35:48.990] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:48.998] | : . Old stack: [12:35:48.999] | : . List of 1 [12:35:48.999] | : . $ :function (..., envir = parent.frame()) [12:35:48.999] | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:48.999] | : . ..- attr(*, "init")= chr "done" [12:35:48.999] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:48.999] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.999] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.999] | : . ..- attr(*, "call")= language plan(sequential) [12:35:48.999] | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [12:35:48.999] | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:48.999] | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:48.999] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:49.013] | : . Not identical [12:35:49.014] | : . all.equal() for future ... [12:35:49.014] | : . ' List of 2 [12:35:49.014] | : . ' $ target :function (..., abc = FALSE, envir = parent.frame()) [12:35:49.014] | : . ' ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [12:35:49.014] | : . ' ..- attr(*, "init")= logi TRUE [12:35:49.014] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.014] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.014] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.014] | : . ' ..- attr(*, "tweaks")=List of 1 [12:35:49.014] | : . ' .. ..$ abc: logi FALSE [12:35:49.014] | : . ' ..- attr(*, "call")= language plan(sequential, abc = FALSE) [12:35:49.014] | : . ' $ current:function (..., envir = parent.frame()) [12:35:49.014] | : . ' ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:49.014] | : . ' ..- attr(*, "init")= chr "done" [12:35:49.014] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.014] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.014] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.014] | : . ' ..- attr(*, "call")= language plan(sequential) [12:35:49.014] | : . ' ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [12:35:49.014] | : . ' .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.014] | : . ' .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.026] | : . ' Formals differ [12:35:49.026] | : . all.equal() for future ... done [12:35:49.027] | : . Future strategies differ at level 1 [12:35:49.027] | : all.equal() for FutureStrategyList ... done [12:35:49.028] | : plan(): Setting new future backend stack: [12:35:49.028] | : List of future strategies: [12:35:49.028] | : 1. sequential: [12:35:49.028] | : - args: function (..., abc = FALSE, envir = parent.frame(), workers = "") [12:35:49.028] | : - tweaked: TRUE [12:35:49.028] | : - call: plan(sequential, abc = FALSE) [12:35:49.029] | : List of 1 [12:35:49.029] | : $ :function (..., abc = FALSE, envir = parent.frame()) [12:35:49.029] | : ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [12:35:49.029] | : ..- attr(*, "init")= logi TRUE [12:35:49.029] | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.029] | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.029] | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.029] | : ..- attr(*, "tweaks")=List of 1 [12:35:49.029] | : .. ..$ abc: logi FALSE [12:35:49.029] | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [12:35:49.029] | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:49.037] | : plan(): plan_cleanup(<'sequential', 'uniprocess', 'future', 'function'>, cleanup = NA) ... [12:35:49.038] | : . plan("next", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:49.038] | : . ' Getting current ("next") strategy: 'FutureStrategy', 'sequential', 'uniprocess', 'future', 'function' [12:35:49.039] | : . plan("next", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:49.039] | : . Legacy shutdown of cluster workers ... [12:35:49.039] | : . ' Stopping existing cluster ... [12:35:49.040] | : . ' , No pre-existing cluster. Skipping [12:35:49.040] | : . ' Stopping existing cluster ... done [12:35:49.041] | : . Legacy shutdown of cluster workers ... done [12:35:49.041] | : plan(): plan_cleanup(<'sequential', 'uniprocess', 'future', 'function'>, cleanup = NA) ... done [12:35:49.041] | : plan(): plan_init() of 'tweaked', 'sequential', 'uniprocess', 'future', 'function' ... [12:35:49.042] | : . function (..., abc = FALSE, envir = parent.frame()) [12:35:49.042] | : . - attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [12:35:49.042] | : . - attr(*, "init")= logi TRUE [12:35:49.042] | : . - attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.042] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.042] | : . - attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.042] | : . - attr(*, "tweaks")=List of 1 [12:35:49.042] | : . ..$ abc: logi FALSE [12:35:49.042] | : . - attr(*, "call")= language plan(sequential, abc = FALSE) [12:35:49.049] | : . init: TRUE [12:35:49.049] | : . makeFutureBackend() ... [12:35:49.049] | : . ' Backend function: <'NULL'> [12:35:49.050] | : . ' Evaluator tweak arguments: [n=1] [12:35:49.050] | : . ' List of 1 [12:35:49.050] | : . ' $ abc: logi FALSE [12:35:49.051] | : . ' Evaluator formal arguments: [n=1] [12:35:49.052] | : . ' List of 1 [12:35:49.052] | : . ' $ abc: logi FALSE [12:35:49.055] | : . ' Backend factory arguments: [n=1] [12:35:49.055] | : . ' Dotted pair list of 1 [12:35:49.055] | : . ' $ abc: logi FALSE [12:35:49.057] | : . ' Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [12:35:49.057] | : . makeFutureBackend() ... done [12:35:49.060] | : plan(): plan_init() of 'tweaked', 'sequential', 'uniprocess', 'future', 'function' ... done [12:35:49.061] | : nbrOfWorkers(NULL) ... [12:35:49.061] | : . List of 4 [12:35:49.061] | : . $ : language plan_set(newStack, skip = .skip, cleanup = .cleanup, init = .init, debug = debug) [12:35:49.061] | : . $ : language with_assert({ nbrOfWorkers <- nbrOfWorkers() ... [12:35:49.061] | : . $ : language nbrOfWorkers() [12:35:49.061] | : . $ : language nbrOfWorkers.NULL() [12:35:49.065] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:49.065] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:49.065] | : . Number of workers: 1 [12:35:49.066] | : nbrOfWorkers(NULL) ... done [12:35:49.066] | : plan(): nbrOfWorkers() = 1 [12:35:49.066] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... done [12:35:49.066] plan(<'name'>, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done > a <- 0 > x %<-% { + a <- 1 + a + } [12:35:49.067] future(..., label = NULL) ... [12:35:49.068] | lazy: FALSE [12:35:49.068] | stdout: TRUE [12:35:49.068] | conditions: [n=1] 'condition' [12:35:49.068] | gc: FALSE [12:35:49.069] | earlySignal: FALSE [12:35:49.069] | getGlobalsAndPackages() ... [12:35:49.069] | : Searching for globals ... [12:35:49.082] | : . globals found: [2] '{', '<-' [12:35:49.083] | : Searching for globals ... done [12:35:49.083] | : Resolving globals: FALSE [12:35:49.083] | : Search for packages associated with the globals ... [12:35:49.084] | : . Packages associated with globals: [1] 'base' [12:35:49.084] | : . Packages: [1] 'base' [12:35:49.084] | : Search for packages associated with the globals ... done [12:35:49.085] | : Packages after dropping 'base': [0] [12:35:49.085] | : globals: [0] [12:35:49.085] | : packages: [0] [12:35:49.086] | getGlobalsAndPackages() ... done [12:35:49.086] | run() for 'Future' () ... [12:35:49.086] | : state: 'created' [12:35:49.087] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:49.087] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:49.087] | : Using SequentialFutureBackend ... [12:35:49.088] | : . Number of futures since start: 0 (0 created, 0 launched, 0 finished) [12:35:49.088] | : . Launching futures ... [12:35:49.088] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [12:35:49.088] | : . ' , getFutureData() ... [12:35:49.089] | : . ' , ; getFutureCore() ... [12:35:49.089] | : . ' , ; ` Packages needed by the future expression (n = 0): [12:35:49.089] | : . ' , ; getFutureCore() ... done [12:35:49.090] | : . ' , ; getFutureCapture() ... [12:35:49.090] | : . ' , ; getFutureCapture() ... done [12:35:49.090] | : . ' , ; getFutureContext() ... [12:35:49.090] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:49.091] | : . ' , ; ` | Getting stack without first backend: [n=0] [12:35:49.091] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:49.091] | : . ' , ; ` Packages needed by future backend (n = 0): [12:35:49.092] | : . ' , ; getFutureContext() ... done [12:35:49.092] | : . ' , getFutureData() ... done [12:35:49.095] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:49.095] | : . ' , ; Getting full stack: [n=1] 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [12:35:49.095] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:49.096] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [12:35:49.096] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [12:35:49.097] | : . ' , ; ` all.equal() for FutureStrategyList ... [12:35:49.097] | : . ' , ; ` | New stack: [12:35:49.097] | : . ' , ; ` | List of 1 [12:35:49.097] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [12:35:49.097] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:49.097] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [12:35:49.097] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.097] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.097] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.097] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [12:35:49.097] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:49.102] | : . ' , ; ` | Old stack: [12:35:49.102] | : . ' , ; ` | List of 1 [12:35:49.102] | : . ' , ; ` | $ :function (..., abc = FALSE, envir = parent.frame()) [12:35:49.102] | : . ' , ; ` | ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [12:35:49.102] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [12:35:49.102] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.102] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.102] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.102] | : . ' , ; ` | ..- attr(*, "tweaks")=List of 1 [12:35:49.102] | : . ' , ; ` | .. ..$ abc: logi FALSE [12:35:49.102] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential, abc = FALSE) [12:35:49.102] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [12:35:49.102] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.102] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.102] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:49.110] | : . ' , ; ` | Not identical [12:35:49.110] | : . ' , ; ` | all.equal() for future ... [12:35:49.110] | : . ' , ; ` | : List of 2 [12:35:49.110] | : . ' , ; ` | : $ target :function (..., envir = parent.frame()) [12:35:49.110] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:49.110] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [12:35:49.110] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.110] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.110] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.110] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [12:35:49.110] | : . ' , ; ` | : $ current:function (..., abc = FALSE, envir = parent.frame()) [12:35:49.110] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [12:35:49.110] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [12:35:49.110] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.110] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.110] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.110] | : . ' , ; ` | : ..- attr(*, "tweaks")=List of 1 [12:35:49.110] | : . ' , ; ` | : .. ..$ abc: logi FALSE [12:35:49.110] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [12:35:49.110] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [12:35:49.110] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.110] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.121] | : . ' , ; ` | : Formals differ [12:35:49.121] | : . ' , ; ` | all.equal() for future ... done [12:35:49.121] | : . ' , ; ` | Future strategies differ at level 1 [12:35:49.122] | : . ' , ; ` all.equal() for FutureStrategyList ... done [12:35:49.122] | : . ' , ; ` plan(): Setting new future backend stack: [12:35:49.122] | : . ' , ; ` List of future strategies: [12:35:49.122] | : . ' , ; ` 1. sequential: [12:35:49.122] | : . ' , ; ` - args: function (..., envir = parent.frame(), workers = "") [12:35:49.122] | : . ' , ; ` - tweaked: FALSE [12:35:49.122] | : . ' , ; ` - call: plan(strategiesR, .cleanup = FALSE, .init = FALSE) [12:35:49.123] | : . ' , ; ` List of 1 [12:35:49.123] | : . ' , ; ` $ :function (..., envir = parent.frame()) [12:35:49.123] | : . ' , ; ` ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:49.123] | : . ' , ; ` ..- attr(*, "init")= logi TRUE [12:35:49.123] | : . ' , ; ` ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.123] | : . ' , ; ` .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.123] | : . ' , ; ` ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.123] | : . ' , ; ` ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [12:35:49.123] | : . ' , ; ` - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:49.127] | : . ' , ; ` plan(): plan_cleanup(<'tweaked', 'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... [12:35:49.127] | : . ' , ; ` plan(): plan_cleanup(<'tweaked', 'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... done [12:35:49.128] | : . ' , ; ` nbrOfWorkers(NULL) ... [12:35:49.128] | : . ' , ; ` | List of 4 [12:35:49.128] | : . ' , ; ` | $ : language plan_set(newStack, skip = .skip, cleanup = .cleanup, init = .init, debug = debug) [12:35:49.128] | : . ' , ; ` | $ : language with_assert({ nbrOfWorkers <- nbrOfWorkers() ... [12:35:49.128] | : . ' , ; ` | $ : language nbrOfWorkers() [12:35:49.128] | : . ' , ; ` | $ : language nbrOfWorkers.NULL() [12:35:49.135] | : . ' , ; ` | plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:49.136] | : . ' , ; ` | : plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... [12:35:49.136] | : . ' , ; ` | : . function (..., envir = parent.frame()) [12:35:49.136] | : . ' , ; ` | : . - attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:49.136] | : . ' , ; ` | : . - attr(*, "init")= logi TRUE [12:35:49.136] | : . ' , ; ` | : . - attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.136] | : . ' , ; ` | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.136] | : . ' , ; ` | : . - attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.136] | : . ' , ; ` | : . - attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [12:35:49.140] | : . ' , ; ` | : . init: TRUE [12:35:49.140] | : . ' , ; ` | : . makeFutureBackend() ... [12:35:49.140] | : . ' , ; ` | : . ' Backend function: <'NULL'> [12:35:49.141] | : . ' , ; ` | : . ' Evaluator tweak arguments: [n=0] [12:35:49.141] | : . ' , ; ` | : . ' list() [12:35:49.142] | : . ' , ; ` | : . ' Evaluator formal arguments: [n=0] [12:35:49.142] | : . ' , ; ` | : . ' list() [12:35:49.142] | : . ' , ; ` | : . ' Backend factory arguments: [n=0] [12:35:49.143] | : . ' , ; ` | : . ' NULL [12:35:49.143] | : . ' , ; ` | : . ' Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [12:35:49.144] | : . ' , ; ` | : . makeFutureBackend() ... done [12:35:49.144] | : . ' , ; ` | : plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... done [12:35:49.144] | : . ' , ; ` | plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:49.145] | : . ' , ; ` | Number of workers: 1 [12:35:49.145] | : . ' , ; ` nbrOfWorkers(NULL) ... done [12:35:49.145] | : . ' , ; ` plan(): nbrOfWorkers() = 1 [12:35:49.145] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [12:35:49.146] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [12:35:49.150] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [12:35:49.150] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [12:35:49.151] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [12:35:49.151] | : . ' , ; ` | all.equal() for FutureStrategyList ... [12:35:49.151] | : . ' , ; ` | : New stack: [12:35:49.151] | : . ' , ; ` | : List of 1 [12:35:49.151] | : . ' , ; ` | : $ :function (..., abc = FALSE, envir = parent.frame()) [12:35:49.151] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [12:35:49.151] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [12:35:49.151] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.151] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.151] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.151] | : . ' , ; ` | : ..- attr(*, "tweaks")=List of 1 [12:35:49.151] | : . ' , ; ` | : .. ..$ abc: logi FALSE [12:35:49.151] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [12:35:49.151] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [12:35:49.151] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.151] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.151] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:49.159] | : . ' , ; ` | : Old stack: [12:35:49.160] | : . ' , ; ` | : List of 1 [12:35:49.160] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [12:35:49.160] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:49.160] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [12:35:49.160] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.160] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.160] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.160] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [12:35:49.160] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [12:35:49.160] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.160] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.160] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:49.167] | : . ' , ; ` | : Not identical [12:35:49.167] | : . ' , ; ` | : all.equal() for future ... [12:35:49.167] | : . ' , ; ` | : . List of 2 [12:35:49.167] | : . ' , ; ` | : . $ target :function (..., abc = FALSE, envir = parent.frame()) [12:35:49.167] | : . ' , ; ` | : . ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [12:35:49.167] | : . ' , ; ` | : . ..- attr(*, "init")= chr "done" [12:35:49.167] | : . ' , ; ` | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.167] | : . ' , ; ` | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.167] | : . ' , ; ` | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.167] | : . ' , ; ` | : . ..- attr(*, "tweaks")=List of 1 [12:35:49.167] | : . ' , ; ` | : . .. ..$ abc: logi FALSE [12:35:49.167] | : . ' , ; ` | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [12:35:49.167] | : . ' , ; ` | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [12:35:49.167] | : . ' , ; ` | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.167] | : . ' , ; ` | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.167] | : . ' , ; ` | : . $ current:function (..., envir = parent.frame()) [12:35:49.167] | : . ' , ; ` | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:49.167] | : . ' , ; ` | : . ..- attr(*, "init")= chr "done" [12:35:49.167] | : . ' , ; ` | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.167] | : . ' , ; ` | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.167] | : . ' , ; ` | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.167] | : . ' , ; ` | : . ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [12:35:49.167] | : . ' , ; ` | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [12:35:49.167] | : . ' , ; ` | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.167] | : . ' , ; ` | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.181] | : . ' , ; ` | : . Formals differ [12:35:49.181] | : . ' , ; ` | : all.equal() for future ... done [12:35:49.181] | : . ' , ; ` | : Future strategies differ at level 1 [12:35:49.182] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [12:35:49.182] | : . ' , ; ` | plan(): Setting new future backend stack: [12:35:49.182] | : . ' , ; ` | List of future strategies: [12:35:49.182] | : . ' , ; ` | 1. sequential: [12:35:49.182] | : . ' , ; ` | - args: function (..., abc = FALSE, envir = parent.frame(), workers = "") [12:35:49.182] | : . ' , ; ` | - tweaked: TRUE [12:35:49.182] | : . ' , ; ` | - call: plan(sequential, abc = FALSE) [12:35:49.183] | : . ' , ; ` | List of 1 [12:35:49.183] | : . ' , ; ` | $ :function (..., abc = FALSE, envir = parent.frame()) [12:35:49.183] | : . ' , ; ` | ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [12:35:49.183] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [12:35:49.183] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.183] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.183] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.183] | : . ' , ; ` | ..- attr(*, "tweaks")=List of 1 [12:35:49.183] | : . ' , ; ` | .. ..$ abc: logi FALSE [12:35:49.183] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential, abc = FALSE) [12:35:49.183] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [12:35:49.183] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.183] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.183] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:49.191] | : . ' , ; ` | plan(): plan_cleanup(<'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... [12:35:49.191] | : . ' , ; ` | plan(): plan_cleanup(<'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... done [12:35:49.191] | : . ' , ; ` | nbrOfWorkers(NULL) ... [12:35:49.192] | : . ' , ; ` | : List of 4 [12:35:49.192] | : . ' , ; ` | : $ : language plan_set(strategy, skip = .skip, cleanup = .cleanup, init = .init, debug = debug) [12:35:49.192] | : . ' , ; ` | : $ : language with_assert({ nbrOfWorkers <- nbrOfWorkers() ... [12:35:49.192] | : . ' , ; ` | : $ : language nbrOfWorkers() [12:35:49.192] | : . ' , ; ` | : $ : language nbrOfWorkers.NULL() [12:35:49.195] | : . ' , ; ` | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:49.195] | : . ' , ; ` | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:49.195] | : . ' , ; ` | : Number of workers: 1 [12:35:49.195] | : . ' , ; ` | nbrOfWorkers(NULL) ... done [12:35:49.196] | : . ' , ; ` | plan(): nbrOfWorkers() = 1 [12:35:49.196] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [12:35:49.196] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [12:35:49.196] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [12:35:49.197] | : . ' , SequentialFuture started (and completed) [12:35:49.198] | : . ' , signalConditions() ... [12:35:49.198] | : . ' , ; include = 'immediateCondition' [12:35:49.198] | : . ' , ; exclude = [12:35:49.198] | : . ' , ; resignal = FALSE [12:35:49.199] | : . ' , ; Number of conditions: 6 [12:35:49.199] | : . ' , ; int 6 [12:35:49.200] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.200] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.200] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.200] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.201] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.201] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.201] | : . ' , signalConditions() ... done [12:35:49.202] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [12:35:49.202] | : . Launching futures ... done [12:35:49.202] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [12:35:49.202] | : Using SequentialFutureBackend ... done [12:35:49.203] | run() for 'Future' () ... done [12:35:49.203] future(..., label = NULL) ... done > print(x) [12:35:49.203] value() for SequentialFuture () ... [12:35:49.204] | signalConditions() ... [12:35:49.204] | : include = 'immediateCondition' [12:35:49.204] | : exclude = [12:35:49.204] | : resignal = FALSE [12:35:49.205] | : Number of conditions: 6 [12:35:49.205] | : int 6 [12:35:49.206] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.206] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.206] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.207] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.207] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.207] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.207] | signalConditions() ... done [12:35:49.208] | relay stdout ... [12:35:49.208] | relay stdout ... done [12:35:49.208] | check for misuse ... [12:35:49.208] | check for misuse ... done [12:35:49.209] | relay conditions ... [12:35:49.209] | : Future state: 'finished' [12:35:49.209] | : signalConditions() ... [12:35:49.210] | : . include = 'condition' [12:35:49.210] | : . exclude = 'immediateCondition' [12:35:49.210] | : . resignal = TRUE [12:35:49.210] | : . Number of conditions: 6 [12:35:49.210] | : . int 6 [12:35:49.211] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.212] | : . Condition #1: 'simpleMessage', 'message', 'condition' [12:35:49.092] | : . ' , attachPackages() ... [12:35:49.212] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.213] | : . Condition #2: 'simpleMessage', 'message', 'condition' [12:35:49.093] | : . ' , ; packages: [n=1] 'future' [12:35:49.213] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.214] | : . Condition #3: 'simpleMessage', 'message', 'condition' [12:35:49.093] | : . ' , attachPackages() ... done [12:35:49.214] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.214] | : . Condition #4: 'simpleMessage', 'message', 'condition' [12:35:49.093] | : . ' , attachPackages() ... [12:35:49.215] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.215] | : . Condition #5: 'simpleMessage', 'message', 'condition' [12:35:49.094] | : . ' , ; packages: [n=0] [12:35:49.215] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.216] | : . Condition #6: 'simpleMessage', 'message', 'condition' [12:35:49.094] | : . ' , attachPackages() ... done [12:35:49.216] | : signalConditions() ... done [12:35:49.216] | relay conditions ... done [12:35:49.217] value() for SequentialFuture () ... done [1] 1 > stopifnot(a == 0, x == 1) > x %<-% { + a <- 2 + a + } %tweak% list(abc = TRUE) [12:35:49.218] plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:49.218] | Getting full stack: [n=1] 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [12:35:49.219] plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:49.219] plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = TRUE) ... [12:35:49.220] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = TRUE) ... [12:35:49.220] | : all.equal() for FutureStrategyList ... [12:35:49.220] | : . New stack: [12:35:49.221] | : . List of 1 [12:35:49.221] | : . $ :function (..., abc = TRUE, envir = parent.frame()) [12:35:49.221] | : . ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [12:35:49.221] | : . ..- attr(*, "init")= logi TRUE [12:35:49.221] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.221] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.221] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.221] | : . ..- attr(*, "tweaks")=List of 2 [12:35:49.221] | : . .. ..$ abc: logi FALSE [12:35:49.221] | : . .. ..$ abc: logi TRUE [12:35:49.221] | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [12:35:49.221] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:49.229] | : . Old stack: [12:35:49.229] | : . List of 1 [12:35:49.229] | : . $ :function (..., abc = FALSE, envir = parent.frame()) [12:35:49.229] | : . ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [12:35:49.229] | : . ..- attr(*, "init")= chr "done" [12:35:49.229] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.229] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.229] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.229] | : . ..- attr(*, "tweaks")=List of 1 [12:35:49.229] | : . .. ..$ abc: logi FALSE [12:35:49.229] | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [12:35:49.229] | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [12:35:49.229] | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.229] | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.229] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:49.238] | : . Not identical [12:35:49.238] | : . all.equal() for future ... [12:35:49.238] | : . ' List of 2 [12:35:49.238] | : . ' $ target :function (..., abc = TRUE, envir = parent.frame()) [12:35:49.238] | : . ' ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [12:35:49.238] | : . ' ..- attr(*, "init")= logi TRUE [12:35:49.238] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.238] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.238] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.238] | : . ' ..- attr(*, "tweaks")=List of 2 [12:35:49.238] | : . ' .. ..$ abc: logi FALSE [12:35:49.238] | : . ' .. ..$ abc: logi TRUE [12:35:49.238] | : . ' ..- attr(*, "call")= language plan(sequential, abc = FALSE) [12:35:49.238] | : . ' $ current:function (..., abc = FALSE, envir = parent.frame()) [12:35:49.238] | : . ' ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [12:35:49.238] | : . ' ..- attr(*, "init")= chr "done" [12:35:49.238] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.238] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.238] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.238] | : . ' ..- attr(*, "tweaks")=List of 1 [12:35:49.238] | : . ' .. ..$ abc: logi FALSE [12:35:49.238] | : . ' ..- attr(*, "call")= language plan(sequential, abc = FALSE) [12:35:49.238] | : . ' ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [12:35:49.238] | : . ' .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.238] | : . ' .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.253] | : . ' Formals differ [12:35:49.253] | : . all.equal() for future ... done [12:35:49.254] | : . Future strategies differ at level 1 [12:35:49.258] | : all.equal() for FutureStrategyList ... done [12:35:49.258] | : plan(): Setting new future backend stack: [12:35:49.258] | : List of future strategies: [12:35:49.258] | : 1. sequential: [12:35:49.258] | : - args: function (..., abc = TRUE, envir = parent.frame(), workers = "") [12:35:49.258] | : - tweaked: TRUE [12:35:49.258] | : - call: plan(sequential, abc = FALSE) [12:35:49.259] | : List of 1 [12:35:49.259] | : $ :function (..., abc = TRUE, envir = parent.frame()) [12:35:49.259] | : ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [12:35:49.259] | : ..- attr(*, "init")= logi TRUE [12:35:49.259] | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.259] | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.259] | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.259] | : ..- attr(*, "tweaks")=List of 2 [12:35:49.259] | : .. ..$ abc: logi FALSE [12:35:49.259] | : .. ..$ abc: logi TRUE [12:35:49.259] | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [12:35:49.259] | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:49.264] | : plan(): plan_cleanup(<'tweaked', 'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... [12:35:49.264] | : plan(): plan_cleanup(<'tweaked', 'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... done [12:35:49.265] | : plan(): plan_init() of 'tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function' ... [12:35:49.265] | : . function (..., abc = TRUE, envir = parent.frame()) [12:35:49.265] | : . - attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [12:35:49.265] | : . - attr(*, "init")= logi TRUE [12:35:49.265] | : . - attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.265] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.265] | : . - attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.265] | : . - attr(*, "tweaks")=List of 2 [12:35:49.265] | : . ..$ abc: logi FALSE [12:35:49.265] | : . ..$ abc: logi TRUE [12:35:49.265] | : . - attr(*, "call")= language plan(sequential, abc = FALSE) [12:35:49.269] | : . init: TRUE [12:35:49.269] | : . makeFutureBackend() ... [12:35:49.269] | : . ' Backend function: <'NULL'> [12:35:49.270] | : . ' Evaluator tweak arguments: [n=2] [12:35:49.270] | : . ' List of 2 [12:35:49.270] | : . ' $ abc: logi FALSE [12:35:49.270] | : . ' $ abc: logi TRUE [12:35:49.271] | : . ' Evaluator formal arguments: [n=1] [12:35:49.271] | : . ' List of 2 [12:35:49.271] | : . ' $ abc: logi FALSE [12:35:49.271] | : . ' $ abc: logi TRUE [12:35:49.273] | : . ' Backend factory arguments: [n=1] [12:35:49.273] | : . ' Dotted pair list of 1 [12:35:49.273] | : . ' $ abc: logi TRUE [12:35:49.275] | : . ' Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [12:35:49.275] | : . makeFutureBackend() ... done [12:35:49.275] | : plan(): plan_init() of 'tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function' ... done [12:35:49.276] | : nbrOfWorkers(NULL) ... [12:35:49.276] | : . List of 4 [12:35:49.276] | : . $ : language plan_set(strategy, skip = .skip, cleanup = .cleanup, init = .init, debug = debug) [12:35:49.276] | : . $ : language with_assert({ nbrOfWorkers <- nbrOfWorkers() ... [12:35:49.276] | : . $ : language nbrOfWorkers() [12:35:49.276] | : . $ : language nbrOfWorkers.NULL() [12:35:49.278] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:49.279] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:49.279] | : . Number of workers: 1 [12:35:49.280] | : nbrOfWorkers(NULL) ... done [12:35:49.280] | : plan(): nbrOfWorkers() = 1 [12:35:49.280] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = TRUE) ... done [12:35:49.280] plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = TRUE) ... done [12:35:49.281] future(..., label = NULL) ... [12:35:49.281] | lazy: FALSE [12:35:49.281] | stdout: TRUE [12:35:49.281] | conditions: [n=1] 'condition' [12:35:49.281] | gc: FALSE [12:35:49.282] | earlySignal: FALSE [12:35:49.282] | getGlobalsAndPackages() ... [12:35:49.282] | : Searching for globals ... [12:35:49.292] | : . globals found: [2] '{', '<-' [12:35:49.292] | : Searching for globals ... done [12:35:49.293] | : Resolving globals: FALSE [12:35:49.293] | : Search for packages associated with the globals ... [12:35:49.293] | : . Packages associated with globals: [1] 'base' [12:35:49.294] | : . Packages: [1] 'base' [12:35:49.294] | : Search for packages associated with the globals ... done [12:35:49.294] | : Packages after dropping 'base': [0] [12:35:49.294] | : globals: [0] [12:35:49.294] | : packages: [0] [12:35:49.295] | getGlobalsAndPackages() ... done [12:35:49.295] | run() for 'Future' () ... [12:35:49.295] | : state: 'created' [12:35:49.296] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:49.296] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:49.296] | : Using SequentialFutureBackend ... [12:35:49.296] | : . Number of futures since start: 0 (0 created, 0 launched, 0 finished) [12:35:49.296] | : . Launching futures ... [12:35:49.297] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [12:35:49.297] | : . ' , getFutureData() ... [12:35:49.297] | : . ' , ; getFutureCore() ... [12:35:49.297] | : . ' , ; ` Packages needed by the future expression (n = 0): [12:35:49.297] | : . ' , ; getFutureCore() ... done [12:35:49.298] | : . ' , ; getFutureCapture() ... [12:35:49.298] | : . ' , ; getFutureCapture() ... done [12:35:49.298] | : . ' , ; getFutureContext() ... [12:35:49.298] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:49.298] | : . ' , ; ` | Getting stack without first backend: [n=0] [12:35:49.299] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:49.299] | : . ' , ; ` Packages needed by future backend (n = 0): [12:35:49.299] | : . ' , ; getFutureContext() ... done [12:35:49.299] | : . ' , getFutureData() ... done [12:35:49.302] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:49.302] | : . ' , ; Getting full stack: [n=1] 'tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [12:35:49.303] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:49.303] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [12:35:49.303] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [12:35:49.304] | : . ' , ; ` all.equal() for FutureStrategyList ... [12:35:49.304] | : . ' , ; ` | New stack: [12:35:49.304] | : . ' , ; ` | List of 1 [12:35:49.304] | : . ' , ; ` | $ :function (..., envir = parent.frame()) [12:35:49.304] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:49.304] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [12:35:49.304] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.304] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.304] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.304] | : . ' , ; ` | ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [12:35:49.304] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:49.308] | : . ' , ; ` | Old stack: [12:35:49.308] | : . ' , ; ` | List of 1 [12:35:49.308] | : . ' , ; ` | $ :function (..., abc = TRUE, envir = parent.frame()) [12:35:49.308] | : . ' , ; ` | ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [12:35:49.308] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [12:35:49.308] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.308] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.308] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.308] | : . ' , ; ` | ..- attr(*, "tweaks")=List of 2 [12:35:49.308] | : . ' , ; ` | .. ..$ abc: logi FALSE [12:35:49.308] | : . ' , ; ` | .. ..$ abc: logi TRUE [12:35:49.308] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential, abc = FALSE) [12:35:49.308] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [12:35:49.308] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.308] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.308] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:49.315] | : . ' , ; ` | Not identical [12:35:49.315] | : . ' , ; ` | all.equal() for future ... [12:35:49.315] | : . ' , ; ` | : List of 2 [12:35:49.315] | : . ' , ; ` | : $ target :function (..., envir = parent.frame()) [12:35:49.315] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:49.315] | : . ' , ; ` | : ..- attr(*, "init")= logi TRUE [12:35:49.315] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.315] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.315] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.315] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [12:35:49.315] | : . ' , ; ` | : $ current:function (..., abc = TRUE, envir = parent.frame()) [12:35:49.315] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [12:35:49.315] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [12:35:49.315] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.315] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.315] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.315] | : . ' , ; ` | : ..- attr(*, "tweaks")=List of 2 [12:35:49.315] | : . ' , ; ` | : .. ..$ abc: logi FALSE [12:35:49.315] | : . ' , ; ` | : .. ..$ abc: logi TRUE [12:35:49.315] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [12:35:49.315] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [12:35:49.315] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.315] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.325] | : . ' , ; ` | : Formals differ [12:35:49.326] | : . ' , ; ` | all.equal() for future ... done [12:35:49.326] | : . ' , ; ` | Future strategies differ at level 1 [12:35:49.327] | : . ' , ; ` all.equal() for FutureStrategyList ... done [12:35:49.327] | : . ' , ; ` plan(): Setting new future backend stack: [12:35:49.327] | : . ' , ; ` List of future strategies: [12:35:49.327] | : . ' , ; ` 1. sequential: [12:35:49.327] | : . ' , ; ` - args: function (..., envir = parent.frame(), workers = "") [12:35:49.327] | : . ' , ; ` - tweaked: FALSE [12:35:49.327] | : . ' , ; ` - call: plan(strategiesR, .cleanup = FALSE, .init = FALSE) [12:35:49.328] | : . ' , ; ` List of 1 [12:35:49.328] | : . ' , ; ` $ :function (..., envir = parent.frame()) [12:35:49.328] | : . ' , ; ` ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:49.328] | : . ' , ; ` ..- attr(*, "init")= logi TRUE [12:35:49.328] | : . ' , ; ` ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.328] | : . ' , ; ` .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.328] | : . ' , ; ` ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.328] | : . ' , ; ` ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [12:35:49.328] | : . ' , ; ` - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:49.335] | : . ' , ; ` plan(): plan_cleanup(<'tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... [12:35:49.335] | : . ' , ; ` plan(): plan_cleanup(<'tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... done [12:35:49.335] | : . ' , ; ` nbrOfWorkers(NULL) ... [12:35:49.336] | : . ' , ; ` | List of 4 [12:35:49.336] | : . ' , ; ` | $ : language plan_set(newStack, skip = .skip, cleanup = .cleanup, init = .init, debug = debug) [12:35:49.336] | : . ' , ; ` | $ : language with_assert({ nbrOfWorkers <- nbrOfWorkers() ... [12:35:49.336] | : . ' , ; ` | $ : language nbrOfWorkers() [12:35:49.336] | : . ' , ; ` | $ : language nbrOfWorkers.NULL() [12:35:49.339] | : . ' , ; ` | plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:49.340] | : . ' , ; ` | : plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... [12:35:49.340] | : . ' , ; ` | : . function (..., envir = parent.frame()) [12:35:49.340] | : . ' , ; ` | : . - attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:49.340] | : . ' , ; ` | : . - attr(*, "init")= logi TRUE [12:35:49.340] | : . ' , ; ` | : . - attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.340] | : . ' , ; ` | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.340] | : . ' , ; ` | : . - attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.340] | : . ' , ; ` | : . - attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [12:35:49.345] | : . ' , ; ` | : . init: TRUE [12:35:49.345] | : . ' , ; ` | : . makeFutureBackend() ... [12:35:49.346] | : . ' , ; ` | : . ' Backend function: <'NULL'> [12:35:49.346] | : . ' , ; ` | : . ' Evaluator tweak arguments: [n=0] [12:35:49.346] | : . ' , ; ` | : . ' list() [12:35:49.347] | : . ' , ; ` | : . ' Evaluator formal arguments: [n=0] [12:35:49.347] | : . ' , ; ` | : . ' list() [12:35:49.348] | : . ' , ; ` | : . ' Backend factory arguments: [n=0] [12:35:49.348] | : . ' , ; ` | : . ' NULL [12:35:49.353] | : . ' , ; ` | : . ' Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [12:35:49.353] | : . ' , ; ` | : . makeFutureBackend() ... done [12:35:49.353] | : . ' , ; ` | : plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... done [12:35:49.354] | : . ' , ; ` | plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:49.355] | : . ' , ; ` | Number of workers: 1 [12:35:49.355] | : . ' , ; ` nbrOfWorkers(NULL) ... done [12:35:49.355] | : . ' , ; ` plan(): nbrOfWorkers() = 1 [12:35:49.356] | : . ' , ; plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [12:35:49.356] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [12:35:49.359] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [12:35:49.359] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [12:35:49.359] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [12:35:49.360] | : . ' , ; ` | all.equal() for FutureStrategyList ... [12:35:49.360] | : . ' , ; ` | : New stack: [12:35:49.360] | : . ' , ; ` | : List of 1 [12:35:49.360] | : . ' , ; ` | : $ :function (..., abc = TRUE, envir = parent.frame()) [12:35:49.360] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [12:35:49.360] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [12:35:49.360] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.360] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.360] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.360] | : . ' , ; ` | : ..- attr(*, "tweaks")=List of 2 [12:35:49.360] | : . ' , ; ` | : .. ..$ abc: logi FALSE [12:35:49.360] | : . ' , ; ` | : .. ..$ abc: logi TRUE [12:35:49.360] | : . ' , ; ` | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [12:35:49.360] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [12:35:49.360] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.360] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.360] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:49.369] | : . ' , ; ` | : Old stack: [12:35:49.369] | : . ' , ; ` | : List of 1 [12:35:49.369] | : . ' , ; ` | : $ :function (..., envir = parent.frame()) [12:35:49.369] | : . ' , ; ` | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:49.369] | : . ' , ; ` | : ..- attr(*, "init")= chr "done" [12:35:49.369] | : . ' , ; ` | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.369] | : . ' , ; ` | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.369] | : . ' , ; ` | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.369] | : . ' , ; ` | : ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [12:35:49.369] | : . ' , ; ` | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [12:35:49.369] | : . ' , ; ` | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.369] | : . ' , ; ` | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.369] | : . ' , ; ` | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:49.374] | : . ' , ; ` | : Not identical [12:35:49.375] | : . ' , ; ` | : all.equal() for future ... [12:35:49.375] | : . ' , ; ` | : . List of 2 [12:35:49.375] | : . ' , ; ` | : . $ target :function (..., abc = TRUE, envir = parent.frame()) [12:35:49.375] | : . ' , ; ` | : . ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [12:35:49.375] | : . ' , ; ` | : . ..- attr(*, "init")= chr "done" [12:35:49.375] | : . ' , ; ` | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.375] | : . ' , ; ` | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.375] | : . ' , ; ` | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.375] | : . ' , ; ` | : . ..- attr(*, "tweaks")=List of 2 [12:35:49.375] | : . ' , ; ` | : . .. ..$ abc: logi FALSE [12:35:49.375] | : . ' , ; ` | : . .. ..$ abc: logi TRUE [12:35:49.375] | : . ' , ; ` | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [12:35:49.375] | : . ' , ; ` | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [12:35:49.375] | : . ' , ; ` | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.375] | : . ' , ; ` | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.375] | : . ' , ; ` | : . $ current:function (..., envir = parent.frame()) [12:35:49.375] | : . ' , ; ` | : . ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:49.375] | : . ' , ; ` | : . ..- attr(*, "init")= chr "done" [12:35:49.375] | : . ' , ; ` | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.375] | : . ' , ; ` | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.375] | : . ' , ; ` | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.375] | : . ' , ; ` | : . ..- attr(*, "call")= language plan(strategiesR, .cleanup = FALSE, .init = FALSE) [12:35:49.375] | : . ' , ; ` | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [12:35:49.375] | : . ' , ; ` | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.375] | : . ' , ; ` | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.388] | : . ' , ; ` | : . Formals differ [12:35:49.388] | : . ' , ; ` | : all.equal() for future ... done [12:35:49.389] | : . ' , ; ` | : Future strategies differ at level 1 [12:35:49.389] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [12:35:49.389] | : . ' , ; ` | plan(): Setting new future backend stack: [12:35:49.390] | : . ' , ; ` | List of future strategies: [12:35:49.390] | : . ' , ; ` | 1. sequential: [12:35:49.390] | : . ' , ; ` | - args: function (..., abc = TRUE, envir = parent.frame(), workers = "") [12:35:49.390] | : . ' , ; ` | - tweaked: TRUE [12:35:49.390] | : . ' , ; ` | - call: plan(sequential, abc = FALSE) [12:35:49.391] | : . ' , ; ` | List of 1 [12:35:49.391] | : . ' , ; ` | $ :function (..., abc = TRUE, envir = parent.frame()) [12:35:49.391] | : . ' , ; ` | ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [12:35:49.391] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [12:35:49.391] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.391] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.391] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.391] | : . ' , ; ` | ..- attr(*, "tweaks")=List of 2 [12:35:49.391] | : . ' , ; ` | .. ..$ abc: logi FALSE [12:35:49.391] | : . ' , ; ` | .. ..$ abc: logi TRUE [12:35:49.391] | : . ' , ; ` | ..- attr(*, "call")= language plan(sequential, abc = FALSE) [12:35:49.391] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [12:35:49.391] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.391] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.391] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:49.399] | : . ' , ; ` | plan(): plan_cleanup(<'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... [12:35:49.399] | : . ' , ; ` | plan(): plan_cleanup(<'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... done [12:35:49.399] | : . ' , ; ` | nbrOfWorkers(NULL) ... [12:35:49.400] | : . ' , ; ` | : List of 4 [12:35:49.400] | : . ' , ; ` | : $ : language plan_set(strategy, skip = .skip, cleanup = .cleanup, init = .init, debug = debug) [12:35:49.400] | : . ' , ; ` | : $ : language with_assert({ nbrOfWorkers <- nbrOfWorkers() ... [12:35:49.400] | : . ' , ; ` | : $ : language nbrOfWorkers() [12:35:49.400] | : . ' , ; ` | : $ : language nbrOfWorkers.NULL() [12:35:49.403] | : . ' , ; ` | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:49.403] | : . ' , ; ` | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:49.403] | : . ' , ; ` | : Number of workers: 1 [12:35:49.404] | : . ' , ; ` | nbrOfWorkers(NULL) ... done [12:35:49.404] | : . ' , ; ` | plan(): nbrOfWorkers() = 1 [12:35:49.404] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [12:35:49.404] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [12:35:49.405] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [12:35:49.405] | : . ' , SequentialFuture started (and completed) [12:35:49.406] | : . ' , signalConditions() ... [12:35:49.406] | : . ' , ; include = 'immediateCondition' [12:35:49.406] | : . ' , ; exclude = [12:35:49.407] | : . ' , ; resignal = FALSE [12:35:49.407] | : . ' , ; Number of conditions: 6 [12:35:49.407] | : . ' , ; int 6 [12:35:49.408] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.408] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.409] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.409] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.409] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.410] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.410] | : . ' , signalConditions() ... done [12:35:49.410] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [12:35:49.410] | : . Launching futures ... done [12:35:49.411] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [12:35:49.411] | : Using SequentialFutureBackend ... done [12:35:49.411] | run() for 'Future' () ... done [12:35:49.412] future(..., label = NULL) ... done [12:35:49.412] plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [12:35:49.412] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [12:35:49.413] | : all.equal() for FutureStrategyList ... [12:35:49.413] | : . New stack: [12:35:49.413] | : . List of 1 [12:35:49.413] | : . $ :function (..., abc = FALSE, envir = parent.frame()) [12:35:49.413] | : . ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [12:35:49.413] | : . ..- attr(*, "init")= chr "done" [12:35:49.413] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.413] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.413] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.413] | : . ..- attr(*, "tweaks")=List of 1 [12:35:49.413] | : . .. ..$ abc: logi FALSE [12:35:49.413] | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [12:35:49.413] | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [12:35:49.413] | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.413] | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.413] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:49.421] | : . Old stack: [12:35:49.421] | : . List of 1 [12:35:49.421] | : . $ :function (..., abc = TRUE, envir = parent.frame()) [12:35:49.421] | : . ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [12:35:49.421] | : . ..- attr(*, "init")= chr "done" [12:35:49.421] | : . ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.421] | : . .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.421] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.421] | : . ..- attr(*, "tweaks")=List of 2 [12:35:49.421] | : . .. ..$ abc: logi FALSE [12:35:49.421] | : . .. ..$ abc: logi TRUE [12:35:49.421] | : . ..- attr(*, "call")= language plan(sequential, abc = FALSE) [12:35:49.421] | : . ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [12:35:49.421] | : . .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.421] | : . .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.421] | : . - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:49.429] | : . Not identical [12:35:49.429] | : . all.equal() for future ... [12:35:49.429] | : . ' List of 2 [12:35:49.429] | : . ' $ target :function (..., abc = FALSE, envir = parent.frame()) [12:35:49.429] | : . ' ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [12:35:49.429] | : . ' ..- attr(*, "init")= chr "done" [12:35:49.429] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.429] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.429] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.429] | : . ' ..- attr(*, "tweaks")=List of 1 [12:35:49.429] | : . ' .. ..$ abc: logi FALSE [12:35:49.429] | : . ' ..- attr(*, "call")= language plan(sequential, abc = FALSE) [12:35:49.429] | : . ' ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [12:35:49.429] | : . ' .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.429] | : . ' .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.429] | : . ' $ current:function (..., abc = TRUE, envir = parent.frame()) [12:35:49.429] | : . ' ..- attr(*, "class")= chr [1:6] "tweaked" "tweaked" "sequential" "uniprocess" ... [12:35:49.429] | : . ' ..- attr(*, "init")= chr "done" [12:35:49.429] | : . ' ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.429] | : . ' .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.429] | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.429] | : . ' ..- attr(*, "tweaks")=List of 2 [12:35:49.429] | : . ' .. ..$ abc: logi FALSE [12:35:49.429] | : . ' .. ..$ abc: logi TRUE [12:35:49.429] | : . ' ..- attr(*, "call")= language plan(sequential, abc = FALSE) [12:35:49.429] | : . ' ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [12:35:49.429] | : . ' .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.429] | : . ' .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.442] | : . ' Formals differ [12:35:49.442] | : . all.equal() for future ... done [12:35:49.443] | : . Future strategies differ at level 1 [12:35:49.443] | : all.equal() for FutureStrategyList ... done [12:35:49.443] | : plan(): Setting new future backend stack: [12:35:49.443] | : List of future strategies: [12:35:49.443] | : 1. sequential: [12:35:49.443] | : - args: function (..., abc = FALSE, envir = parent.frame(), workers = "") [12:35:49.443] | : - tweaked: TRUE [12:35:49.443] | : - call: plan(sequential, abc = FALSE) [12:35:49.444] | : List of 1 [12:35:49.444] | : $ :function (..., abc = FALSE, envir = parent.frame()) [12:35:49.444] | : ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [12:35:49.444] | : ..- attr(*, "init")= chr "done" [12:35:49.444] | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.444] | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.444] | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.444] | : ..- attr(*, "tweaks")=List of 1 [12:35:49.444] | : .. ..$ abc: logi FALSE [12:35:49.444] | : ..- attr(*, "call")= language plan(sequential, abc = FALSE) [12:35:49.444] | : ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [12:35:49.444] | : .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.444] | : .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.444] | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:49.451] | : plan(): plan_cleanup(<'tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... [12:35:49.452] | : plan(): plan_cleanup(<'tweaked', 'tweaked', 'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... done [12:35:49.452] | : nbrOfWorkers(NULL) ... [12:35:49.452] | : . List of 4 [12:35:49.452] | : . $ : language plan_set(strategy, skip = .skip, cleanup = .cleanup, init = .init, debug = debug) [12:35:49.452] | : . $ : language with_assert({ nbrOfWorkers <- nbrOfWorkers() ... [12:35:49.452] | : . $ : language nbrOfWorkers() [12:35:49.452] | : . $ : language nbrOfWorkers.NULL() [12:35:49.455] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:49.455] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:49.455] | : . Number of workers: 1 [12:35:49.456] | : nbrOfWorkers(NULL) ... done [12:35:49.456] | : plan(): nbrOfWorkers() = 1 [12:35:49.456] | plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [12:35:49.456] plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done > print(x) [12:35:49.457] value() for SequentialFuture () ... [12:35:49.457] | signalConditions() ... [12:35:49.457] | : include = 'immediateCondition' [12:35:49.458] | : exclude = [12:35:49.458] | : resignal = FALSE [12:35:49.458] | : Number of conditions: 6 [12:35:49.458] | : int 6 [12:35:49.459] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.459] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.460] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.460] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.460] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.460] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.461] | signalConditions() ... done [12:35:49.461] | relay stdout ... [12:35:49.461] | relay stdout ... done [12:35:49.461] | check for misuse ... [12:35:49.462] | check for misuse ... done [12:35:49.462] | relay conditions ... [12:35:49.462] | : Future state: 'finished' [12:35:49.462] | : signalConditions() ... [12:35:49.463] | : . include = 'condition' [12:35:49.463] | : . exclude = 'immediateCondition' [12:35:49.463] | : . resignal = TRUE [12:35:49.463] | : . Number of conditions: 6 [12:35:49.463] | : . int 6 [12:35:49.464] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.465] | : . Condition #1: 'simpleMessage', 'message', 'condition' [12:35:49.300] | : . ' , attachPackages() ... [12:35:49.465] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.465] | : . Condition #2: 'simpleMessage', 'message', 'condition' [12:35:49.300] | : . ' , ; packages: [n=1] 'future' [12:35:49.465] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.469] | : . Condition #3: 'simpleMessage', 'message', 'condition' [12:35:49.300] | : . ' , attachPackages() ... done [12:35:49.470] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.470] | : . Condition #4: 'simpleMessage', 'message', 'condition' [12:35:49.301] | : . ' , attachPackages() ... [12:35:49.470] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.470] | : . Condition #5: 'simpleMessage', 'message', 'condition' [12:35:49.301] | : . ' , ; packages: [n=0] [12:35:49.471] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.471] | : . Condition #6: 'simpleMessage', 'message', 'condition' [12:35:49.301] | : . ' , attachPackages() ... done [12:35:49.471] | : signalConditions() ... done [12:35:49.472] | relay conditions ... done [12:35:49.472] value() for SequentialFuture () ... done [1] 2 > stopifnot(a == 0, x == 2) > plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [12:35:49.472] plan(<'call'>, .skip = FALSE, .cleanup = NA, .init = TRUE) ... Warning: Detected 1 unknown future arguments: 'abc' [12:35:49.473] | plan(): plan_set(<2 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... [12:35:49.474] | : all.equal() for FutureStrategyList ... [12:35:49.474] | : . Different lengths [12:35:49.474] | : all.equal() for FutureStrategyList ... done [12:35:49.474] | : plan(): Setting new future backend stack: [12:35:49.475] | : List of future strategies: [12:35:49.475] | : 1. sequential: [12:35:49.475] | : - args: function (..., envir = parent.frame(), workers = "") [12:35:49.475] | : - tweaked: FALSE [12:35:49.475] | : - call: plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [12:35:49.475] | : 2. sequential: [12:35:49.475] | : - args: function (..., abc = FALSE, envir = parent.frame(), workers = "") [12:35:49.475] | : - tweaked: TRUE [12:35:49.475] | : - call: plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [12:35:49.476] | : List of 2 [12:35:49.476] | : $ A:function (..., envir = parent.frame()) [12:35:49.476] | : ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:49.476] | : ..- attr(*, "init")= logi TRUE [12:35:49.476] | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.476] | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.476] | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.476] | : ..- attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [12:35:49.476] | : $ B:function (..., abc = FALSE, envir = parent.frame()) [12:35:49.476] | : ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [12:35:49.476] | : ..- attr(*, "init")= logi TRUE [12:35:49.476] | : ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.476] | : .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.476] | : ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.476] | : ..- attr(*, "tweaks")=List of 1 [12:35:49.476] | : .. ..$ abc: logi FALSE [12:35:49.476] | : ..- attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [12:35:49.476] | : - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:49.485] | : plan(): plan_cleanup(<'tweaked', 'sequential', 'uniprocess', 'future', 'function'>, cleanup = NA) ... [12:35:49.485] | : . plan("next", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:49.486] | : . ' Getting current ("next") strategy: 'FutureStrategy', 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [12:35:49.486] | : . plan("next", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:49.486] | : . Legacy shutdown of cluster workers ... [12:35:49.486] | : . ' Stopping existing cluster ... [12:35:49.487] | : . ' , No pre-existing cluster. Skipping [12:35:49.487] | : . ' Stopping existing cluster ... done [12:35:49.487] | : . Legacy shutdown of cluster workers ... done [12:35:49.487] | : plan(): plan_cleanup(<'tweaked', 'sequential', 'uniprocess', 'future', 'function'>, cleanup = NA) ... done [12:35:49.487] | : plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... [12:35:49.488] | : . function (..., envir = parent.frame()) [12:35:49.488] | : . - attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:49.488] | : . - attr(*, "init")= logi TRUE [12:35:49.488] | : . - attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.488] | : . ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.488] | : . - attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.488] | : . - attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [12:35:49.491] | : . init: TRUE [12:35:49.491] | : . makeFutureBackend() ... [12:35:49.492] | : . ' Backend function: <'NULL'> [12:35:49.492] | : . ' Evaluator tweak arguments: [n=0] [12:35:49.492] | : . ' list() [12:35:49.493] | : . ' Evaluator formal arguments: [n=0] [12:35:49.493] | : . ' list() [12:35:49.493] | : . ' Backend factory arguments: [n=0] [12:35:49.494] | : . ' NULL [12:35:49.494] | : . ' Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [12:35:49.495] | : . makeFutureBackend() ... done [12:35:49.495] | : plan(): plan_init() of 'sequential', 'uniprocess', 'future', 'function' ... done [12:35:49.495] | : nbrOfWorkers(NULL) ... [12:35:49.495] | : . List of 4 [12:35:49.495] | : . $ : language plan_set(newStack, skip = .skip, cleanup = .cleanup, init = .init, debug = debug) [12:35:49.495] | : . $ : language with_assert({ nbrOfWorkers <- nbrOfWorkers() ... [12:35:49.495] | : . $ : language nbrOfWorkers() [12:35:49.495] | : . $ : language nbrOfWorkers.NULL() [12:35:49.498] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:49.498] | : . plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:49.498] | : . Number of workers: 1 [12:35:49.499] | : nbrOfWorkers(NULL) ... done [12:35:49.499] | : plan(): nbrOfWorkers() = 1 [12:35:49.499] | plan(): plan_set(<2 strategies>, skip = FALSE, cleanup = NA, init = TRUE) ... done [12:35:49.499] plan(<'call'>, .skip = FALSE, .cleanup = NA, .init = TRUE) ... done > a <- 0 > x %<-% { + stopifnot(identical(names(plan("list")), "B")) + a <- 1 + a + } [12:35:49.500] future(..., label = NULL) ... [12:35:49.500] | lazy: FALSE [12:35:49.501] | stdout: TRUE [12:35:49.501] | conditions: [n=1] 'condition' [12:35:49.501] | gc: FALSE [12:35:49.501] | earlySignal: FALSE [12:35:49.502] | getGlobalsAndPackages() ... [12:35:49.502] | : Searching for globals ... [12:35:49.528] | : . globals found: [6] '{', 'stopifnot', 'identical', 'names', 'plan', '<-' [12:35:49.529] | : Searching for globals ... done [12:35:49.529] | : Resolving globals: FALSE [12:35:49.530] | : Search for packages associated with the globals ... [12:35:49.530] | : . Packages associated with globals: [1] 'base' [12:35:49.531] | : . Packages: [1] 'base' [12:35:49.531] | : Search for packages associated with the globals ... done [12:35:49.532] | : Packages after dropping 'base': [0] [12:35:49.532] | : globals: [1] 'plan' [12:35:49.532] | : packages: [0] [12:35:49.532] | getGlobalsAndPackages() ... done [12:35:49.533] | run() for 'Future' () ... [12:35:49.533] | : state: 'created' [12:35:49.533] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:49.534] | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:49.534] | : Using SequentialFutureBackend ... [12:35:49.534] | : . Number of futures since start: 0 (0 created, 0 launched, 0 finished) [12:35:49.534] | : . Launching futures ... [12:35:49.535] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... [12:35:49.535] | : . ' , getFutureData() ... [12:35:49.535] | : . ' , ; getFutureCore() ... [12:35:49.536] | : . ' , ; ` Packages needed by the future expression (n = 0): [12:35:49.536] | : . ' , ; getFutureCore() ... done [12:35:49.536] | : . ' , ; getFutureCapture() ... [12:35:49.536] | : . ' , ; getFutureCapture() ... done [12:35:49.537] | : . ' , ; getFutureContext() ... [12:35:49.537] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:49.537] | : . ' , ; ` | Getting stack without first backend: [n=1] 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [12:35:49.537] | : . ' , ; ` plan("tail", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:49.538] | : . ' , ; ` Packages needed by future strategies (n = 0): [12:35:49.538] | : . ' , ; getFutureContext() ... done [12:35:49.538] | : . ' , getFutureData() ... done [12:35:49.540] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:49.541] | : . ' , ; Getting full stack: [n=2] 'c("sequential", "uniprocess", "future", "function")', 'c("tweaked", "sequential", "uniprocess", "future", "function")' [12:35:49.541] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:49.541] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [12:35:49.541] | : . ' , ; plan(<'list'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [12:35:49.542] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [12:35:49.542] | : . ' , ; ` | all.equal() for FutureStrategyList ... [12:35:49.542] | : . ' , ; ` | : Different lengths [12:35:49.542] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [12:35:49.542] | : . ' , ; ` | plan(): Setting new future backend stack: [12:35:49.543] | : . ' , ; ` | List of future strategies: [12:35:49.543] | : . ' , ; ` | 1. sequential: [12:35:49.543] | : . ' , ; ` | - args: function (..., abc = FALSE, envir = parent.frame(), workers = "") [12:35:49.543] | : . ' , ; ` | - tweaked: TRUE [12:35:49.543] | : . ' , ; ` | - call: plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [12:35:49.543] | : . ' , ; ` | List of 1 [12:35:49.543] | : . ' , ; ` | $ B:function (..., abc = FALSE, envir = parent.frame()) [12:35:49.543] | : . ' , ; ` | ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [12:35:49.543] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [12:35:49.543] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.543] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.543] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.543] | : . ' , ; ` | ..- attr(*, "tweaks")=List of 1 [12:35:49.543] | : . ' , ; ` | .. ..$ abc: logi FALSE [12:35:49.543] | : . ' , ; ` | ..- attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [12:35:49.543] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:49.548] | : . ' , ; ` | plan(): plan_cleanup(<'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... [12:35:49.548] | : . ' , ; ` | plan(): plan_cleanup(<'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... done [12:35:49.548] | : . ' , ; ` | nbrOfWorkers(NULL) ... [12:35:49.548] | : . ' , ; ` | : List of 4 [12:35:49.548] | : . ' , ; ` | : $ : language plan_set(strategy, skip = .skip, cleanup = .cleanup, init = .init, debug = debug) [12:35:49.548] | : . ' , ; ` | : $ : language with_assert({ nbrOfWorkers <- nbrOfWorkers() ... [12:35:49.548] | : . ' , ; ` | : $ : language nbrOfWorkers() [12:35:49.548] | : . ' , ; ` | : $ : language nbrOfWorkers.NULL() [12:35:49.550] | : . ' , ; ` | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:49.550] | : . ' , ; ` | : . plan(): plan_init() of 'tweaked', 'sequential', 'uniprocess', 'future', 'function' ... [12:35:49.551] | : . ' , ; ` | : . ' function (..., abc = FALSE, envir = parent.frame()) [12:35:49.551] | : . ' , ; ` | : . ' - attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [12:35:49.551] | : . ' , ; ` | : . ' - attr(*, "init")= logi TRUE [12:35:49.551] | : . ' , ; ` | : . ' - attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.551] | : . ' , ; ` | : . ' ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.551] | : . ' , ; ` | : . ' - attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.551] | : . ' , ; ` | : . ' - attr(*, "tweaks")=List of 1 [12:35:49.551] | : . ' , ; ` | : . ' ..$ abc: logi FALSE [12:35:49.551] | : . ' , ; ` | : . ' - attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [12:35:49.554] | : . ' , ; ` | : . ' init: TRUE [12:35:49.554] | : . ' , ; ` | : . ' makeFutureBackend() ... [12:35:49.555] | : . ' , ; ` | : . ' , Backend function: <'NULL'> [12:35:49.555] | : . ' , ; ` | : . ' , Evaluator tweak arguments: [n=1] [12:35:49.555] | : . ' , ; ` | : . ' , List of 1 [12:35:49.555] | : . ' , ; ` | : . ' , $ abc: logi FALSE [12:35:49.556] | : . ' , ; ` | : . ' , Evaluator formal arguments: [n=1] [12:35:49.556] | : . ' , ; ` | : . ' , List of 1 [12:35:49.556] | : . ' , ; ` | : . ' , $ abc: logi FALSE [12:35:49.557] | : . ' , ; ` | : . ' , Backend factory arguments: [n=1] [12:35:49.557] | : . ' , ; ` | : . ' , Dotted pair list of 1 [12:35:49.557] | : . ' , ; ` | : . ' , $ abc: logi FALSE [12:35:49.558] | : . ' , ; ` | : . ' , Backend: <'SequentialFutureBackend', 'FutureBackend', 'environment'> [12:35:49.558] | : . ' , ; ` | : . ' makeFutureBackend() ... done [12:35:49.559] | : . ' , ; ` | : . plan(): plan_init() of 'tweaked', 'sequential', 'uniprocess', 'future', 'function' ... done [12:35:49.559] | : . ' , ; ` | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:49.559] | : . ' , ; ` | : Number of workers: 1 [12:35:49.559] | : . ' , ; ` | nbrOfWorkers(NULL) ... done [12:35:49.559] | : . ' , ; ` | plan(): nbrOfWorkers() = 1 [12:35:49.559] | : . ' , ; ` plan(): plan_set(<1 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [12:35:49.560] | : . ' , ; plan(<'list'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [12:35:49.560] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [12:35:49.560] | : . ' , assign_globals() ... [12:35:49.560] | : . ' , List of 1 [12:35:49.560] | : . ' , $ plan:function (strategy = NULL, ..., substitute = TRUE, .skip = FALSE, .call = TRUE, [12:35:49.560] | : . ' , .cleanup = NA, .init = TRUE) [12:35:49.560] | : . ' , - attr(*, "where")=List of 1 [12:35:49.560] | : . ' , ..$ plan: [12:35:49.560] | : . ' , .. ..- attr(*, "name")= chr "package:future" [12:35:49.560] | : . ' , .. ..- attr(*, "path")= chr "D:/RCompile/CRANincoming/R-devel/lib/future" [12:35:49.560] | : . ' , - attr(*, "class")= chr [1:3] "FutureGlobals" "Globals" "list" [12:35:49.560] | : . ' , - attr(*, "resolved")= logi FALSE [12:35:49.560] | : . ' , - attr(*, "total_size")= num NA [12:35:49.560] | : . ' , - attr(*, "already-done")= logi TRUE [12:35:49.567] | : . ' , - copied 'plan' to environment [12:35:49.567] | : . ' , assign_globals() ... done [12:35:49.572] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [12:35:49.572] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... [12:35:49.572] | : . ' , ; ` plan(): plan_set(<2 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... [12:35:49.573] | : . ' , ; ` | all.equal() for FutureStrategyList ... [12:35:49.573] | : . ' , ; ` | : Different lengths [12:35:49.573] | : . ' , ; ` | all.equal() for FutureStrategyList ... done [12:35:49.574] | : . ' , ; ` | plan(): Setting new future backend stack: [12:35:49.574] | : . ' , ; ` | List of future strategies: [12:35:49.574] | : . ' , ; ` | 1. sequential: [12:35:49.574] | : . ' , ; ` | - args: function (..., envir = parent.frame(), workers = "") [12:35:49.574] | : . ' , ; ` | - tweaked: FALSE [12:35:49.574] | : . ' , ; ` | - call: plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [12:35:49.574] | : . ' , ; ` | 2. sequential: [12:35:49.574] | : . ' , ; ` | - args: function (..., abc = FALSE, envir = parent.frame(), workers = "") [12:35:49.574] | : . ' , ; ` | - tweaked: TRUE [12:35:49.574] | : . ' , ; ` | - call: plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [12:35:49.575] | : . ' , ; ` | List of 2 [12:35:49.575] | : . ' , ; ` | $ A:function (..., envir = parent.frame()) [12:35:49.575] | : . ' , ; ` | ..- attr(*, "class")= chr [1:4] "sequential" "uniprocess" "future" "function" [12:35:49.575] | : . ' , ; ` | ..- attr(*, "init")= chr "done" [12:35:49.575] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.575] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.575] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.575] | : . ' , ; ` | ..- attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [12:35:49.575] | : . ' , ; ` | ..- attr(*, "backend")=Classes 'SequentialFutureBackend', 'FutureBackend', 'environment' [12:35:49.575] | : . ' , ; ` | .. ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.575] | : . ' , ; ` | .. .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.575] | : . ' , ; ` | $ B:function (..., abc = FALSE, envir = parent.frame()) [12:35:49.575] | : . ' , ; ` | ..- attr(*, "class")= chr [1:5] "tweaked" "sequential" "uniprocess" "future" ... [12:35:49.575] | : . ' , ; ` | ..- attr(*, "init")= logi TRUE [12:35:49.575] | : . ' , ; ` | ..- attr(*, "factory")=function (..., maxSizeOfObjects = +Inf) [12:35:49.575] | : . ' , ; ` | .. ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.575] | : . ' , ; ` | ..- attr(*, "tweakable")= chr [1:5] "maxSizeOfObjects" "earlySignal" "gc" "interrupts" ... [12:35:49.575] | : . ' , ; ` | ..- attr(*, "tweaks")=List of 1 [12:35:49.575] | : . ' , ; ` | .. ..$ abc: logi FALSE [12:35:49.575] | : . ' , ; ` | ..- attr(*, "call")= language plan(list(A = sequential, B = tweak(sequential, abc = FALSE))) [12:35:49.575] | : . ' , ; ` | - attr(*, "class")= chr [1:2] "FutureStrategyList" "list" [12:35:49.591] | : . ' , ; ` | plan(): plan_cleanup(<'tweaked', 'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... [12:35:49.592] | : . ' , ; ` | plan(): plan_cleanup(<'tweaked', 'sequential', 'uniprocess', 'future', 'function'>, cleanup = FALSE) ... done [12:35:49.592] | : . ' , ; ` | nbrOfWorkers(NULL) ... [12:35:49.592] | : . ' , ; ` | : List of 4 [12:35:49.592] | : . ' , ; ` | : $ : language plan_set(strategy, skip = .skip, cleanup = .cleanup, init = .init, debug = debug) [12:35:49.592] | : . ' , ; ` | : $ : language with_assert({ nbrOfWorkers <- nbrOfWorkers() ... [12:35:49.592] | : . ' , ; ` | : $ : language nbrOfWorkers() [12:35:49.592] | : . ' , ; ` | : $ : language nbrOfWorkers.NULL() [12:35:49.596] | : . ' , ; ` | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:49.596] | : . ' , ; ` | : plan("backend", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:49.597] | : . ' , ; ` | : Number of workers: 1 [12:35:49.597] | : . ' , ; ` | nbrOfWorkers(NULL) ... done [12:35:49.597] | : . ' , ; ` | plan(): nbrOfWorkers() = 1 [12:35:49.597] | : . ' , ; ` plan(): plan_set(<2 strategies>, skip = FALSE, cleanup = FALSE, init = FALSE) ... done [12:35:49.598] | : . ' , ; plan(<'FutureStrategyList'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [12:35:49.598] | : . ' , plan(<'name'>, .skip = FALSE, .cleanup = FALSE, .init = FALSE) ... done [12:35:49.599] | : . ' , SequentialFuture started (and completed) [12:35:49.599] | : . ' , signalConditions() ... [12:35:49.600] | : . ' , ; include = 'immediateCondition' [12:35:49.600] | : . ' , ; exclude = [12:35:49.600] | : . ' , ; resignal = FALSE [12:35:49.601] | : . ' , ; Number of conditions: 9 [12:35:49.601] | : . ' , ; int 9 [12:35:49.602] | : . ' , ; Condition #1 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.602] | : . ' , ; Condition #2 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.602] | : . ' , ; Condition #3 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.603] | : . ' , ; Condition #4 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.603] | : . ' , ; Condition #5 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.603] | : . ' , ; Condition #6 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.604] | : . ' , ; Condition #7 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.604] | : . ' , ; Condition #8 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.604] | : . ' , ; Condition #9 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.605] | : . ' , signalConditions() ... done [12:35:49.605] | : . ' launchFuture() for 'SequentialFutureBackend', 'FutureBackend', 'environment' ... done [12:35:49.605] | : . Launching futures ... done [12:35:49.605] | : . Future launched: 'SequentialFuture', 'UniprocessFuture', 'Future' [12:35:49.606] | : Using SequentialFutureBackend ... done [12:35:49.606] | run() for 'Future' () ... done [12:35:49.607] future(..., label = NULL) ... done > print(x) [12:35:49.607] value() for SequentialFuture () ... [12:35:49.607] | signalConditions() ... [12:35:49.608] | : include = 'immediateCondition' [12:35:49.608] | : exclude = [12:35:49.608] | : resignal = FALSE [12:35:49.609] | : Number of conditions: 9 [12:35:49.609] | : int 9 [12:35:49.610] | : Condition #1 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.610] | : Condition #2 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.610] | : Condition #3 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.611] | : Condition #4 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.611] | : Condition #5 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.611] | : Condition #6 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.611] | : Condition #7 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.612] | : Condition #8 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.612] | : Condition #9 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.612] | signalConditions() ... done [12:35:49.613] | relay stdout ... [12:35:49.613] | relay stdout ... done [12:35:49.613] | check for misuse ... [12:35:49.614] | check for misuse ... done [12:35:49.614] | relay conditions ... [12:35:49.614] | : Future state: 'finished' [12:35:49.614] | : signalConditions() ... [12:35:49.615] | : . include = 'condition' [12:35:49.615] | : . exclude = 'immediateCondition' [12:35:49.615] | : . resignal = TRUE [12:35:49.616] | : . Number of conditions: 9 [12:35:49.616] | : . int 9 [12:35:49.617] | : . Condition #1 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.617] | : . Condition #1: 'simpleMessage', 'message', 'condition' [12:35:49.538] | : . ' , attachPackages() ... [12:35:49.618] | : . Condition #2 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.618] | : . Condition #2: 'simpleMessage', 'message', 'condition' [12:35:49.539] | : . ' , ; packages: [n=0] [12:35:49.618] | : . Condition #3 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.619] | : . Condition #3: 'simpleMessage', 'message', 'condition' [12:35:49.539] | : . ' , attachPackages() ... done [12:35:49.619] | : . Condition #4 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.619] | : . Condition #4: 'simpleMessage', 'message', 'condition' [12:35:49.539] | : . ' , attachPackages() ... [12:35:49.620] | : . Condition #5 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.620] | : . Condition #5: 'simpleMessage', 'message', 'condition' [12:35:49.539] | : . ' , ; packages: [n=0] [12:35:49.620] | : . Condition #6 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.620] | : . Condition #6: 'simpleMessage', 'message', 'condition' [12:35:49.540] | : . ' , attachPackages() ... done [12:35:49.621] | : . Condition #7 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.621] | : . Condition #7: 'simpleMessage', 'message', 'condition' [12:35:49.568] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... [12:35:49.622] | : . Condition #8 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.622] | : . Condition #8: 'simpleMessage', 'message', 'condition' [12:35:49.568] | : . ' , ; Getting full stack: [n=1] 'tweaked', 'sequential', 'uniprocess', 'future', 'function' [12:35:49.622] | : . Condition #9 (class: 'simpleMessage', 'message', 'condition'): [12:35:49.623] | : . Condition #9: 'simpleMessage', 'message', 'condition' [12:35:49.568] | : . ' , plan("list", .skip = FALSE, .cleanup = NA, .init = TRUE) ... done [12:35:49.623] | : signalConditions() ... done [12:35:49.623] | relay conditions ... done [12:35:49.624] 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) [12:35:49.629] getGlobalsAndPackages() ... [12:35:49.629] | Searching for globals ... [12:35:49.642] | : globals found: [4] '{', 'y', 'x', '~' [12:35:49.642] | Searching for globals ... done [12:35:49.643] | Resolving globals: FALSE [12:35:49.643] | Search for packages associated with the globals ... [12:35:49.644] | : Packages associated with globals: [1] 'base' [12:35:49.644] | : Packages: [1] 'base' [12:35:49.645] | Search for packages associated with the globals ... done [12:35:49.646] | The total size of the 1 globals is 39 bytes (39 bytes) [12:35:49.647] | 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') [12:35:49.647] | Packages after dropping 'base': [0] [12:35:49.647] | globals: [1] 'x' [12:35:49.647] | packages: [0] [12:35:49.648] 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=213] '!ExitCode', 'ALLUSERSPROFILE', 'APPDATA', 'BIBINPUTS', 'BINDIR', 'BSTINPUTS', 'COMMONPROGRAMFILES', 'COMPUTERNAME', 'COMSPEC', 'CURL_CA_BUNDLE', '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_07_29_12_30_17_31216' Sourcing 6 epilogue scripts ... done Test time: user.self=2s, sys.self=0.06s, elapsed=4s, user.child=NAs, sys.child=NAs Test 'tweak' ... success > > proc.time() user system elapsed 2.04 0.26 4.31