* using log directory 'd:/Rcompile/CRANpkg/local/4.6/repo.data.Rcheck' * using R version 4.6.1 (2026-06-24 ucrt) * using platform: x86_64-w64-mingw32 * R was compiled by gcc.exe (GCC) 14.3.0 GNU Fortran (GCC) 14.3.0 * running under: Windows Server 2022 x64 (build 20348) * using session charset: UTF-8 * current time: 2026-08-12 23:20:12 UTC * checking for file 'repo.data/DESCRIPTION' ... OK * this is package 'repo.data' version '0.2.2' * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... OK * checking if this is a source package ... OK * checking if there is a namespace ... OK * checking for hidden files and directories ... OK * checking for portable file names ... OK * checking whether package 'repo.data' can be installed ... OK * checking installed package size ... OK * checking package directory ... OK * checking 'build' directory ... OK * checking DESCRIPTION meta-information ... OK * checking top-level files ... OK * checking for left-over files ... OK * checking index information ... OK * checking package subdirectories ... OK * checking code files for non-ASCII characters ... OK * checking R files for syntax errors ... OK * checking whether the package can be loaded ... [0s] OK * checking whether the package can be loaded with stated dependencies ... [0s] OK * checking whether the package can be unloaded cleanly ... [0s] OK * checking whether the namespace can be loaded with stated dependencies ... [0s] OK * checking whether the namespace can be unloaded cleanly ... [0s] OK * checking loading without being on the library search path ... [0s] OK * checking whether startup messages can be suppressed ... [0s] OK * checking use of S3 registration ... OK * checking dependencies in R code ... OK * checking S3 generic/method consistency ... OK * checking replacement functions ... OK * checking foreign function calls ... OK * checking R code for possible problems ... [6s] OK * checking Rd files ... [1s] OK * checking Rd metadata ... OK * checking Rd cross-references ... OK * checking for missing documentation entries ... OK * checking for code/documentation mismatches ... OK * checking Rd \usage sections ... OK * checking Rd contents ... OK * checking for unstated dependencies in examples ... OK * checking contents of 'data' directory ... OK * checking data for non-ASCII characters ... [0s] OK * checking LazyData ... OK * checking data for ASCII and uncompressed saves ... OK * checking installed files from 'inst/doc' ... OK * checking files in 'vignettes' ... OK * checking examples ... [71s] OK * checking for unstated dependencies in 'tests' ... OK * checking tests ... [300s] ERROR Running 'spelling.R' [0s] Running 'test-actions.R' [0s] Running 'test-alias.R' [46s] Running 'test-bioconductor.R' [22s] Running 'test-cran_actions.R' [0s] Running 'test-cran_archive.R' [56s] Running 'test-cran_doom.R' [21s] Running 'test-cran_history.R' [0s] Running 'test-cran_issues.R' [0s] Running 'test-cran_targets_links.R' [0s] Running 'test-cran_version.R' [5s] Running 'test-dates.R' [3s] Running 'test-help.R' [0s] Running 'test-links.R' [55s] Running 'test-maintainers.R' [21s] Running 'test-package_date.R' [5s] Running 'test-package_repos.R' [25s] Running 'test-update_dependencies.R' [39s] Running the tests in 'tests/test-alias.R' failed. Complete output: > library("repo.data") Attaching package: 'repo.data' The following object is masked from 'package:stats': alias > alias_columns <- c("Package", "Source", "Target") > pkges <- c("BaseSet", "experDesign") > bpkges <- c("tools", "compiler") > > # Test that cache works > st <- system.time(ca <- cran_alias(pkges)) Downloading and caching CRAN aliases for this session. > repo.data:::no_internet(ca) > stopifnot(colnames(ca) == alias_columns) > stopifnot(is.data.frame(ca)) > st1 <- system.time(ca2 <- cran_alias(pkges)) > stopifnot("Cache didn't work" = st1[[3]] < st[[3]]) > stopifnot("Cache was not the same" = all.equal(ca, ca2)) > > clean_cache() > st2 <- system.time(ca3 <- cran_alias(pkges)) Downloading and caching CRAN aliases for this session. > repo.data:::no_internet(ca3) > stopifnot("Clean cache restores initial state" = st2[[3]] > st1[[3]]) > stopifnot("Still same result" = all.equal(ca, ca3)) > > ca <- cran_alias() Warning: Packages with targets not present in a OS: 'sfsmisc' > repo.data:::no_internet(ca) > stopifnot(colnames(ca) == alias_columns) > ca2 <- cran_alias() > stopifnot("Cache returns the same for all packages" = all.equal(ca, ca2)) > > st <- system.time(ba <- base_alias(bpkges)) Downloading and caching base R's aliases for this session. > repo.data:::no_internet(ba) > stopifnot(colnames(ba) == alias_columns) > stopifnot(is.data.frame(ba)) > st1 <- system.time(ba2 <- base_alias(bpkges)) > stopifnot("Cache didn't work" = st1[[3]] < st[[3]]) > stopifnot("Cache was not the same" = all.equal(ba, ba2)) > > clean_cache() > st2 <- system.time(ba3 <- base_alias(bpkges)) Downloading and caching base R's aliases for this session. > repo.data:::no_internet(ba3) > stopifnot("Clean cache restores initial state" = st2[[3]] > st1[[3]]) > stopifnot("Still same result" = all.equal(ba, ba3)) > > ba <- base_alias() > repo.data:::no_internet(ba) > stopifnot(colnames(ba) == alias_columns) > ba2 <- base_alias() > stopifnot("Cache returns the same for all packages" = all.equal(ba, ba2)) > > > clean_cache() > > oldrepos <- getOption("repos") > on.exit(options(oldrepos), add = TRUE) > setRepositories(ind = 2, addURLs = c(CRAN = "https://cran.r-project.org")) > pkges <- c(pkges, "BioCor") > > st <- system.time(ba <- alias(pkges)) > repo.data:::no_internet(ba) > stopifnot(colnames(ba) == alias_columns) > st1 <- system.time(ba2 <- alias(pkges)) > stopifnot("Cache alias didn't work" = any(st1 < st)) > stopifnot("Alias with cache was not the same" = all.equal(ba, ba2)) > missing_pkg <- pkges[!pkges %in% ba2$Package] > > if (length(missing_pkg)) { + stop(sprintf("All packages are present on alias output: %s", toString(missing_pkg))) + } Error: All packages are present on alias output: BioCor Execution halted * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... [213s] OK * checking PDF version of manual ... [19s] OK * checking HTML version of manual ... [20s] OK * DONE Status: 1 ERROR Check process probably crashed or hung up for 20 minutes ... killed Most likely this happened in the example checks (?), if not, ignore the following last lines of example output: > ### Name: update_dependencies > ### Title: Upgradable versions > ### Aliases: update_dependencies > > ### ** Examples > > update_dependencies("arrow") Name Version 1 cpp11 0.5.2 2 rlang 1.1.7 3 testthat 3.3.2 4 tidyselect 1.2.1 > > > > ### *