R Under development (unstable) (2024-07-26 r86926 ucrt) -- "Unsuffered Consequences" Copyright (C) 2024 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. > source("incl/start.R") > > r_version_has_bug18119 <- function() { + parallelly:::r_version_has_bug18119(force = TRUE) + } > > affected_by_bug18119 <- function() { + parallelly:::affected_by_bug18119(force = TRUE) + } > > > message("*** R bug #18119 ...") *** R bug #18119 ... > > has <- r_version_has_bug18119() > message("r_version_has_bug18119(): ", has) r_version_has_bug18119(): FALSE > > Sys.setenv(R_PARALLELLY_R_VERSION="3.5.3") > has <- r_version_has_bug18119() > message("r_version_has_bug18119(): ", has) r_version_has_bug18119(): FALSE > stopifnot(!has) > > Sys.setenv(R_PARALLELLY_R_VERSION="4.0.0") > has <- r_version_has_bug18119() > message("r_version_has_bug18119(): ", has) r_version_has_bug18119(): TRUE > stopifnot(has) > > Sys.setenv(R_PARALLELLY_R_VERSION="4.0.5") > has <- r_version_has_bug18119() > message("r_version_has_bug18119(): ", has) r_version_has_bug18119(): TRUE > stopifnot(has) > > Sys.setenv(R_PARALLELLY_R_VERSION="4.1.0") > has <- r_version_has_bug18119() > message("r_version_has_bug18119(): ", has) r_version_has_bug18119(): TRUE > stopifnot(has) > > Sys.setenv(R_PARALLELLY_R_VERSION="4.1.1") > has <- r_version_has_bug18119() > message("r_version_has_bug18119(): ", has) r_version_has_bug18119(): FALSE > stopifnot(!has) > > Sys.setenv(R_PARALLELLY_R_VERSION="4.2.0") > has <- r_version_has_bug18119() > message("r_version_has_bug18119(): ", has) r_version_has_bug18119(): FALSE > stopifnot(!has) > > message("*** R bug #18119 ... DONE") *** R bug #18119 ... DONE > > source("incl/end.R") > > proc.time() user system elapsed 0.31 0.06 0.35