Note: the module "R" cannot be unloaded because it was not loaded. WARNING: ignoring environment value of R_HOME R Under development (unstable) (2025-03-29 r88074) -- "Unsuffered Consequences" Copyright (C) 2025 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu 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. > cargs <- commandArgs(trailingOnly=TRUE) > if(length(cargs)==0){ + ## before running interactively, make sure to start emacs/R with + ## environment defined in /scratch/...check_one.sh, particularly + ## R_LIBS_USER=/tmp/... otherwise we get error when installing + ## data.table. + base <- "/scratch/th798/data.table-revdeps/*" + cargs <- c( + Sys.glob(file.path(base,"deps.csv")), + "349", + Sys.glob(file.path(base, "data.table_release_*tar.gz")), + Sys.glob(file.path(base, "data.table_master_*tar.gz")) + ) + } > names(cargs) <- c("deps.csv", "task.str", "release", "master") > dput(cargs) c(deps.csv = "/scratch/th798/data.table-revdeps/2025-03-30/deps.csv", task.str = "832", release = "/scratch/th798/data.table-revdeps/2025-03-30/data.table_release_1.17.0.tar.gz", master = "/scratch/th798/data.table-revdeps/2025-03-30/data.table_master_1.17.99.2cb03162a21328cc5f68a8c3b0e554f5edfcb5b9.tar.gz" ) > (task.dir <- dirname(.libPaths()[1]))#should be /tmp/th798/slurmid/R-vers [1] "/tmp/th798/16189860/R-devel/832" > if(requireNamespace("R.cache"))R.cache::getCachePath() Loading required namespace: R.cache [1] "/tmp/th798/16189860/R-devel/832/R.cache" > task.id <- as.integer(cargs[["task.str"]]) > deps.df <- read.csv(cargs[["deps.csv"]]) > (rev.dep <- deps.df$Package[task.id]) [1] "mlr3" > job.dir <- file.path(dirname(cargs[["deps.csv"]]), "tasks", task.id) > setwd(task.dir) > .libPaths() [1] "/tmp/th798/16189860/R-devel/832/library" [2] "/projects/genomic-ml/R/R-devel/library" > options(repos=c(#this should be in ~/.Rprofile too. + CRAN="http://cloud.r-project.org")) > print(Sys.time()) [1] "2025-03-30 01:01:17 MST" > install.time <- system.time({ + install.packages(rev.dep, dep=TRUE) + }) Installing package into '/tmp/th798/16189860/R-devel/832/library' (as 'lib' is unspecified) also installing the dependencies 'future.callr', 'mlr3data' trying URL 'http://cloud.r-project.org/src/contrib/future.callr_0.8.2.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/mlr3data_0.9.0.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/mlr3_0.23.0.tar.gz' * installing *source* package 'future.callr' ... ** this is package 'future.callr' version '0.8.2' ** package 'future.callr' successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (future.callr) * installing *source* package 'mlr3data' ... ** this is package 'mlr3data' version '0.9.0' ** package 'mlr3data' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data *** moving datasets to lazyload DB ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (mlr3data) * installing *source* package 'mlr3' ... ** this is package 'mlr3' version '0.23.0' ** package 'mlr3' successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (mlr3) The downloaded source packages are in '/tmp/th798/16189860/RtmpIALmXi/downloaded_packages' > cat("Time to install revdep:\n") Time to install revdep: > print(install.time) user system elapsed 38.862 3.451 101.564 > print(Sys.time()) [1] "2025-03-30 01:02:58 MST" > downloaded_packages <- file.path( + tempdir(), + "downloaded_packages") > dl.glob <- file.path( + downloaded_packages, + paste0(rev.dep,"_*.tar.gz")) > rev.dep.dl.row <- cbind(rev.dep, Sys.glob(dl.glob)) > colnames(rev.dep.dl.row) <- c("pkg","path") > rev.dep.release.tar.gz <- normalizePath(rev.dep.dl.row[,"path"], mustWork=TRUE) > pkg.Rcheck <- paste0(rev.dep, ".Rcheck") > > proj.dir <- "~/genomic-ml/data.table-revdeps" > source(file.path(proj.dir, "myStatus.R")) > Rvers <- gsub("[()]", "", gsub(" ", "_", R.version[["version.string"]])) > dir.create(Rvers, showWarnings=FALSE) > Rcheck.list <- list() > for(dt.version.short in c("release", "master")){ + dt.tar.gz <- cargs[[dt.version.short]] + dt.version <- gsub(".tar.gz|/.*?_", "", dt.tar.gz) + print(Sys.time()) + install.packages(dt.tar.gz, repos=NULL) + print(Sys.time()) + check.cmd <- get_check_cmd(rev.dep.release.tar.gz) + system(check.cmd) + print(Sys.time()) + dest.Rcheck <- file.path( + Rvers, + paste0(dt.version, ".Rcheck")) + unlink(dest.Rcheck, recursive=TRUE) + file.rename(pkg.Rcheck, dest.Rcheck) + Rcheck.list[[dt.version]] <- file.path(dest.Rcheck, "00check.log") + } [1] "2025-03-30 01:02:58 MST" Installing package into '/tmp/th798/16189860/R-devel/832/library' (as 'lib' is unspecified) * installing *source* package 'data.table' ... ** this is package 'data.table' version '1.17.0' ** package 'data.table' successfully unpacked and MD5 sums checked ** using staged installation zlib 1.2.13 is available ok * checking if R installation supports OpenMP without any extra hints... yes ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c assign.c -o assign.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c between.c -o between.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c bmerge.c -o bmerge.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c chmatch.c -o chmatch.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cj.c -o cj.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c coalesce.c -o coalesce.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dogroups.c -o dogroups.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fastmean.c -o fastmean.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fcast.c -o fcast.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fifelse.c -o fifelse.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fmelt.c -o fmelt.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c forder.c -o forder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frank.c -o frank.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fread.c -o fread.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c freadR.c -o freadR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c froll.c -o froll.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frollR.c -o frollR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frolladaptive.c -o frolladaptive.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fsort.c -o fsort.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwrite.c -o fwrite.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwriteR.c -o fwriteR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gsumm.c -o gsumm.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c idatetime.c -o idatetime.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ijoin.c -o ijoin.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c inrange.c -o inrange.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nafill.c -o nafill.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c negate.c -o negate.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nqrecreateindices.c -o nqrecreateindices.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c openmp-utils.c -o openmp-utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c programming.c -o programming.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c quickselect.c -o quickselect.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rbindlist.c -o rbindlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c reorder.c -o reorder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c shift.c -o shift.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c snprintf.c -o snprintf.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c subset.c -o subset.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c transpose.c -o transpose.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c types.c -o types.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c uniqlist.c -o uniqlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c utils.c -o utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c vecseq.c -o vecseq.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c wrappers.c -o wrappers.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o data.table.so assign.o between.o bmerge.o chmatch.o cj.o coalesce.o dogroups.o fastmean.o fcast.o fifelse.o fmelt.o forder.o frank.o fread.o freadR.o froll.o frollR.o frolladaptive.o fsort.o fwrite.o fwriteR.o gsumm.o idatetime.o ijoin.o init.o inrange.o nafill.o negate.o nqrecreateindices.o openmp-utils.o programming.o quickselect.o rbindlist.o reorder.o shift.o snprintf.o subset.o transpose.o types.o uniqlist.o utils.o vecseq.o wrappers.o -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz PKG_CFLAGS = -fopenmp -I/home/th798/.conda/envs/emacs1/include PKG_LIBS = -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz if [ "data.table.so" != "data_table.so" ]; then mv data.table.so data_table.so; fi if [ "" != "Windows_NT" ] && [ `uname -s` = 'Darwin' ]; then install_name_tool -id data_table.so data_table.so; fi installing to /tmp/th798/16189860/R-devel/832/library/00LOCK-data.table/00new/data.table/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (data.table) [1] "2025-03-30 01:03:23 MST" * using log directory '/tmp/th798/16189860/R-devel/832/mlr3.Rcheck' * using R Under development (unstable) (2025-03-29 r88074) * using platform: x86_64-pc-linux-gnu * R was compiled by gcc (Spack GCC) 12.2.0 GNU Fortran (Spack GCC) 12.2.0 * running under: Red Hat Enterprise Linux 8.10 (Ootpa) * using session charset: ASCII * checking for file 'mlr3/DESCRIPTION' ... OK * this is package 'mlr3' version '0.23.0' * 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 executable files ... OK * checking for hidden files and directories ... OK * checking for portable file names ... OK * checking for sufficient/correct file permissions ... OK * checking whether package 'mlr3' can be installed ... OK * checking installed package size ... OK * checking package 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 ... OK * checking whether the package can be loaded with stated dependencies ... OK * checking whether the package can be unloaded cleanly ... OK * checking whether the namespace can be loaded with stated dependencies ... OK * checking whether the namespace can be unloaded cleanly ... OK * checking whether startup messages can be suppressed ... 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 ... OK * checking Rd files ... OK * checking Rd metadata ... OK * checking Rd cross-references ... INFO Package unavailable to check Rd xrefs: 'mlr3oml' * 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 examples ... OK * checking for unstated dependencies in 'tests' ... OK * checking tests ... Running 'testthat.R' OK * checking PDF version of manual ... OK * DONE Status: OK [1] "2025-03-30 01:13:50 MST" [1] "2025-03-30 01:13:50 MST" Installing package into '/tmp/th798/16189860/R-devel/832/library' (as 'lib' is unspecified) * installing *source* package 'data.table' ... ** this is package 'data.table' version '1.17.99' ** using staged installation zlib 1.2.13 is available ok * checking if R installation supports OpenMP without any extra hints... yes ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c assign.c -o assign.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c between.c -o between.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c bmerge.c -o bmerge.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c chmatch.c -o chmatch.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cj.c -o cj.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c coalesce.c -o coalesce.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dogroups.c -o dogroups.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fastmean.c -o fastmean.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fcast.c -o fcast.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fifelse.c -o fifelse.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fmelt.c -o fmelt.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c forder.c -o forder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frank.c -o frank.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fread.c -o fread.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c freadR.c -o freadR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c froll.c -o froll.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frollR.c -o frollR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frolladaptive.c -o frolladaptive.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fsort.c -o fsort.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwrite.c -o fwrite.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwriteR.c -o fwriteR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gsumm.c -o gsumm.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c idatetime.c -o idatetime.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ijoin.c -o ijoin.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c inrange.c -o inrange.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nafill.c -o nafill.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c negate.c -o negate.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nqrecreateindices.c -o nqrecreateindices.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c openmp-utils.c -o openmp-utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c programming.c -o programming.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c quickselect.c -o quickselect.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rbindlist.c -o rbindlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c reorder.c -o reorder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c shift.c -o shift.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c snprintf.c -o snprintf.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c subset.c -o subset.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c transpose.c -o transpose.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c types.c -o types.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c uniqlist.c -o uniqlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c utils.c -o utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c vecseq.c -o vecseq.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c wrappers.c -o wrappers.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o data.table.so assign.o between.o bmerge.o chmatch.o cj.o coalesce.o dogroups.o fastmean.o fcast.o fifelse.o fmelt.o forder.o frank.o fread.o freadR.o froll.o frollR.o frolladaptive.o fsort.o fwrite.o fwriteR.o gsumm.o idatetime.o ijoin.o init.o inrange.o nafill.o negate.o nqrecreateindices.o openmp-utils.o programming.o quickselect.o rbindlist.o reorder.o shift.o snprintf.o subset.o transpose.o types.o uniqlist.o utils.o vecseq.o wrappers.o -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz PKG_CFLAGS = -fopenmp -I/home/th798/.conda/envs/emacs1/include PKG_LIBS = -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz if [ "data.table.so" != "data_table.so" ]; then mv data.table.so data_table.so; fi if [ "" != "Windows_NT" ] && [ `uname -s` = 'Darwin' ]; then install_name_tool -id data_table.so data_table.so; fi installing to /tmp/th798/16189860/R-devel/832/library/00LOCK-data.table/00new/data.table/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (data.table) [1] "2025-03-30 01:14:13 MST" * using log directory '/tmp/th798/16189860/R-devel/832/mlr3.Rcheck' * using R Under development (unstable) (2025-03-29 r88074) * using platform: x86_64-pc-linux-gnu * R was compiled by gcc (Spack GCC) 12.2.0 GNU Fortran (Spack GCC) 12.2.0 * running under: Red Hat Enterprise Linux 8.10 (Ootpa) * using session charset: ASCII * checking for file 'mlr3/DESCRIPTION' ... OK * this is package 'mlr3' version '0.23.0' * 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 executable files ... OK * checking for hidden files and directories ... OK * checking for portable file names ... OK * checking for sufficient/correct file permissions ... OK * checking whether package 'mlr3' can be installed ... OK * checking installed package size ... OK * checking package 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 ... OK * checking whether the package can be loaded with stated dependencies ... OK * checking whether the package can be unloaded cleanly ... OK * checking whether the namespace can be loaded with stated dependencies ... OK * checking whether the namespace can be unloaded cleanly ... OK * checking whether startup messages can be suppressed ... 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 ... OK * checking Rd files ... OK * checking Rd metadata ... OK * checking Rd cross-references ... INFO Package unavailable to check Rd xrefs: 'mlr3oml' * 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 examples ... OK * checking for unstated dependencies in 'tests' ... OK * checking tests ... Running 'testthat.R' OK * checking PDF version of manual ... OK * DONE Status: OK [1] "2025-03-30 01:22:21 MST" > system(paste(c("diff -u", Rcheck.list), collapse=" ")) > library(data.table, lib.loc=R.home("library")) > (sig.diff.dt <- myDiff(Rvers)) Key: Empty data.table (0 rows and 3 cols): checking,master,release > > ## If there are significant differences, use git bisect to find when > ## they started. > if(nrow(sig.diff.dt)){ + dt.git <- file.path(task.dir, "data.table.git") + system(paste("cd ~/R/data.table && git fetch --tags")) + system(paste("git clone ~/R/data.table", dt.git)) + release.tag <- gsub(".tar.gz|.*_", "", cargs[["release"]]) + rev.parse.cmd <- paste( + "cd", dt.git, "&& git rev-parse master") + master.sha <- system(rev.parse.cmd, intern=TRUE) + merge.base.cmd <- paste( + "cd", dt.git, "&& git merge-base master", release.tag) + merge.base.sha <- system(merge.base.cmd, intern=TRUE) + old.sha <- merge.base.sha + run_R <- file.path(proj.dir, "install_dt_then_check_dep.R") + sig.diff.dt[, first.bad.commit := NA_character_] + sig.diff.dt[, comments := NA_character_] + for(diff.i in 1:nrow(sig.diff.dt)){ + sig.diff.row <- sig.diff.dt[diff.i] + bisect.cmd <- paste( + "cd", dt.git, "&&", + "git bisect start &&", + "git bisect old", old.sha, "&&", + "git bisect new master &&", + "git bisect run", + R.home('bin/Rscript'), + run_R, + shQuote(sig.diff.row$checking), + sig.diff.row$release, + rev.dep.release.tar.gz, + release.tag) + print(bisect.cmd) + bisect.out <- system(bisect.cmd, intern=TRUE) + cat(bisect.out,sep="\n") + if(is.null(attr(bisect.out,"status"))){ + first.bad.sha <- nc::capture_all_str( + bisect.out, + sha="[0-9a-f]+", + " is the first new commit")$sha + parent.cmd <- paste( + "cd ~/R/data.table && git log --pretty=%P -n 1", + first.bad.sha) + parent.sha <- system(parent.cmd, intern=TRUE) + sig.diff.dt[diff.i, first.bad.commit := first.bad.sha] + parent.msg <- paste0("parent=", parent.sha) + this.comment <- if(parent.sha==old.sha){ + paste(parent.msg, "same as git bisect old") + }else if(first.bad.sha==master.sha){ + paste("same as git bisect new=master,", parent.msg) + }else{ + parent.msg + } + sig.diff.dt[diff.i, comments := this.comment] + } + } + ## add CRAN column. + sig.diff.dt[, CRAN := { + flavor <- get_flavor(Rvers) + details <- data.table(flavor=unique(flavor))[, { + base <- "https://www.r-project.org/nosvn/R.check/" + u <- paste0(base, flavor, "/", rev.dep, "-00check.txt") + check.txt <- tempfile() + tryCatch({ + download.file(u, check.txt, quiet=TRUE) + }, error=function(e){ + NULL + }) + check.lines <- if(file.exists(check.txt)){ + readLines(check.txt,encoding="UTF-8") + }else{ + "" + } + repl.lines <- gsub("[\u2018\u2019]", "'", check.lines) + ##gsub("[‘’]", "'", check.lines) does not work with LC_ALL=C. + myStatus(line.vec=repl.lines) + }, by=flavor] + select.dt <- data.table(flavor, checking) + details[select.dt, msg, on=.(flavor, checking)] + }] + dir.create(file.path(job.dir, Rvers)) + diffs.csv <- file.path(job.dir, Rvers, "significant_differences.csv") + data.table::fwrite(sig.diff.dt, diffs.csv) + print(sig.diff.dt) + } > WARNING: ignoring environment value of R_HOME R version 4.4.3 (2025-02-28) -- "Trophy Case" Copyright (C) 2025 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu 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. > cargs <- commandArgs(trailingOnly=TRUE) > if(length(cargs)==0){ + ## before running interactively, make sure to start emacs/R with + ## environment defined in /scratch/...check_one.sh, particularly + ## R_LIBS_USER=/tmp/... otherwise we get error when installing + ## data.table. + base <- "/scratch/th798/data.table-revdeps/*" + cargs <- c( + Sys.glob(file.path(base,"deps.csv")), + "349", + Sys.glob(file.path(base, "data.table_release_*tar.gz")), + Sys.glob(file.path(base, "data.table_master_*tar.gz")) + ) + } > names(cargs) <- c("deps.csv", "task.str", "release", "master") > dput(cargs) c(deps.csv = "/scratch/th798/data.table-revdeps/2025-03-30/deps.csv", task.str = "832", release = "/scratch/th798/data.table-revdeps/2025-03-30/data.table_release_1.17.0.tar.gz", master = "/scratch/th798/data.table-revdeps/2025-03-30/data.table_master_1.17.99.2cb03162a21328cc5f68a8c3b0e554f5edfcb5b9.tar.gz" ) > (task.dir <- dirname(.libPaths()[1]))#should be /tmp/th798/slurmid/R-vers [1] "/tmp/th798/16189860/R-release/832" > if(requireNamespace("R.cache"))R.cache::getCachePath() Loading required namespace: R.cache [1] "/tmp/th798/16189860/R-release/832/R.cache" > task.id <- as.integer(cargs[["task.str"]]) > deps.df <- read.csv(cargs[["deps.csv"]]) > (rev.dep <- deps.df$Package[task.id]) [1] "mlr3" > job.dir <- file.path(dirname(cargs[["deps.csv"]]), "tasks", task.id) > setwd(task.dir) > .libPaths() [1] "/tmp/th798/16189860/R-release/832/library" [2] "/projects/genomic-ml/R/R-release/library" > options(repos=c(#this should be in ~/.Rprofile too. + CRAN="http://cloud.r-project.org")) > print(Sys.time()) [1] "2025-03-30 01:22:27 MST" > install.time <- system.time({ + install.packages(rev.dep, dep=TRUE) + }) Installing package into '/tmp/th798/16189860/R-release/832/library' (as 'lib' is unspecified) also installing the dependencies 'mlr3measures', 'paradox', 'future.callr', 'mlr3data' trying URL 'http://cloud.r-project.org/src/contrib/mlr3measures_1.0.0.tar.gz' Content type 'application/x-gzip' length 47134 bytes (46 KB) ================================================== downloaded 46 KB trying URL 'http://cloud.r-project.org/src/contrib/paradox_1.0.1.tar.gz' Content type 'application/x-gzip' length 386196 bytes (377 KB) ================================================== downloaded 377 KB trying URL 'http://cloud.r-project.org/src/contrib/future.callr_0.8.2.tar.gz' Content type 'application/x-gzip' length 27536 bytes (26 KB) ================================================== downloaded 26 KB trying URL 'http://cloud.r-project.org/src/contrib/mlr3data_0.9.0.tar.gz' Content type 'application/x-gzip' length 3250547 bytes (3.1 MB) ================================================== downloaded 3.1 MB trying URL 'http://cloud.r-project.org/src/contrib/mlr3_0.23.0.tar.gz' Content type 'application/x-gzip' length 948622 bytes (926 KB) ================================================== downloaded 926 KB * installing *source* package 'mlr3measures' ... ** package 'mlr3measures' successfully unpacked and MD5 sums checked ** using staged installation ** R ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (mlr3measures) * installing *source* package 'paradox' ... ** package 'paradox' successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (paradox) * installing *source* package 'future.callr' ... ** package 'future.callr' successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (future.callr) * installing *source* package 'mlr3data' ... ** package 'mlr3data' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data *** moving datasets to lazyload DB ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (mlr3data) * installing *source* package 'mlr3' ... ** package 'mlr3' successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (mlr3) The downloaded source packages are in '/tmp/th798/16189860/RtmpKfRkLl/downloaded_packages' > cat("Time to install revdep:\n") Time to install revdep: > print(install.time) user system elapsed 47.327 1.814 55.413 > print(Sys.time()) [1] "2025-03-30 01:23:22 MST" > downloaded_packages <- file.path( + tempdir(), + "downloaded_packages") > dl.glob <- file.path( + downloaded_packages, + paste0(rev.dep,"_*.tar.gz")) > rev.dep.dl.row <- cbind(rev.dep, Sys.glob(dl.glob)) > colnames(rev.dep.dl.row) <- c("pkg","path") > rev.dep.release.tar.gz <- normalizePath(rev.dep.dl.row[,"path"], mustWork=TRUE) > pkg.Rcheck <- paste0(rev.dep, ".Rcheck") > > proj.dir <- "~/genomic-ml/data.table-revdeps" > source(file.path(proj.dir, "myStatus.R")) > Rvers <- gsub("[()]", "", gsub(" ", "_", R.version[["version.string"]])) > dir.create(Rvers, showWarnings=FALSE) > Rcheck.list <- list() > for(dt.version.short in c("release", "master")){ + dt.tar.gz <- cargs[[dt.version.short]] + dt.version <- gsub(".tar.gz|/.*?_", "", dt.tar.gz) + print(Sys.time()) + install.packages(dt.tar.gz, repos=NULL) + print(Sys.time()) + check.cmd <- get_check_cmd(rev.dep.release.tar.gz) + system(check.cmd) + print(Sys.time()) + dest.Rcheck <- file.path( + Rvers, + paste0(dt.version, ".Rcheck")) + unlink(dest.Rcheck, recursive=TRUE) + file.rename(pkg.Rcheck, dest.Rcheck) + Rcheck.list[[dt.version]] <- file.path(dest.Rcheck, "00check.log") + } [1] "2025-03-30 01:23:22 MST" Installing package into '/tmp/th798/16189860/R-release/832/library' (as 'lib' is unspecified) * installing *source* package 'data.table' ... ** package 'data.table' successfully unpacked and MD5 sums checked ** using staged installation zlib 1.2.13 is available ok * checking if R installation supports OpenMP without any extra hints... yes ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c assign.c -o assign.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c between.c -o between.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c bmerge.c -o bmerge.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c chmatch.c -o chmatch.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cj.c -o cj.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c coalesce.c -o coalesce.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dogroups.c -o dogroups.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fastmean.c -o fastmean.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fcast.c -o fcast.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fifelse.c -o fifelse.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fmelt.c -o fmelt.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c forder.c -o forder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frank.c -o frank.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fread.c -o fread.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c freadR.c -o freadR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c froll.c -o froll.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frollR.c -o frollR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frolladaptive.c -o frolladaptive.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fsort.c -o fsort.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwrite.c -o fwrite.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwriteR.c -o fwriteR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gsumm.c -o gsumm.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c idatetime.c -o idatetime.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ijoin.c -o ijoin.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c inrange.c -o inrange.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nafill.c -o nafill.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c negate.c -o negate.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nqrecreateindices.c -o nqrecreateindices.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c openmp-utils.c -o openmp-utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c programming.c -o programming.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c quickselect.c -o quickselect.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rbindlist.c -o rbindlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c reorder.c -o reorder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c shift.c -o shift.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c snprintf.c -o snprintf.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c subset.c -o subset.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c transpose.c -o transpose.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c types.c -o types.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c uniqlist.c -o uniqlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c utils.c -o utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c vecseq.c -o vecseq.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c wrappers.c -o wrappers.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o data.table.so assign.o between.o bmerge.o chmatch.o cj.o coalesce.o dogroups.o fastmean.o fcast.o fifelse.o fmelt.o forder.o frank.o fread.o freadR.o froll.o frollR.o frolladaptive.o fsort.o fwrite.o fwriteR.o gsumm.o idatetime.o ijoin.o init.o inrange.o nafill.o negate.o nqrecreateindices.o openmp-utils.o programming.o quickselect.o rbindlist.o reorder.o shift.o snprintf.o subset.o transpose.o types.o uniqlist.o utils.o vecseq.o wrappers.o -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz PKG_CFLAGS = -fopenmp -I/home/th798/.conda/envs/emacs1/include PKG_LIBS = -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz if [ "data.table.so" != "data_table.so" ]; then mv data.table.so data_table.so; fi if [ "" != "Windows_NT" ] && [ `uname -s` = 'Darwin' ]; then install_name_tool -id data_table.so data_table.so; fi installing to /tmp/th798/16189860/R-release/832/library/00LOCK-data.table/00new/data.table/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (data.table) [1] "2025-03-30 01:23:42 MST" * using log directory '/tmp/th798/16189860/R-release/832/mlr3.Rcheck' * using R version 4.4.3 (2025-02-28) * using platform: x86_64-pc-linux-gnu * R was compiled by gcc (Spack GCC) 12.2.0 GNU Fortran (Spack GCC) 12.2.0 * running under: Red Hat Enterprise Linux 8.10 (Ootpa) * using session charset: ASCII * checking for file 'mlr3/DESCRIPTION' ... OK * this is package 'mlr3' version '0.23.0' * 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 executable files ... OK * checking for hidden files and directories ... OK * checking for portable file names ... OK * checking for sufficient/correct file permissions ... OK * checking whether package 'mlr3' can be installed ... OK * checking installed package size ... OK * checking package 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 ... OK * checking whether the package can be loaded with stated dependencies ... OK * checking whether the package can be unloaded cleanly ... OK * checking whether the namespace can be loaded with stated dependencies ... OK * checking whether the namespace can be unloaded cleanly ... OK * checking whether startup messages can be suppressed ... 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 ... OK * checking Rd files ... OK * checking Rd metadata ... OK * checking Rd cross-references ... NOTE Package unavailable to check Rd xrefs: 'mlr3oml' * 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 examples ... ERROR Running examples in 'mlr3-Ex.R' failed The error most likely occurred in: > base::assign(".ptime", proc.time(), pos = "CheckExEnv") > ### Name: BenchmarkResult > ### Title: Container for Benchmarking Results > ### Aliases: BenchmarkResult > > ### ** Examples > > set.seed(123) > learners = list( + lrn("classif.featureless", predict_type = "prob"), + lrn("classif.rpart", predict_type = "prob") + ) > > design = benchmark_grid( + tasks = list(tsk("sonar"), tsk("penguins")), + learners = learners, + resamplings = rsmp("cv", folds = 3) + ) > print(design) task learner resampling 1: sonar classif.featureless cv 2: sonar classif.rpart cv 3: penguins classif.featureless cv 4: penguins classif.rpart cv > > bmr = benchmark(design) Error in UseMethod("as_callbacks") : no applicable method for 'as_callbacks' applied to an object of class "NULL" Calls: benchmark ... assert_list -> checkList -> %and% -> isTRUE -> as_callbacks Execution halted * checking for unstated dependencies in 'tests' ... OK * checking tests ... Running 'testthat.R' ERROR Running the tests in 'tests/testthat.R' failed. Complete output: > if (requireNamespace("testthat", quietly = TRUE)) { + library("checkmate") + library("testthat") + library("mlr3") + test_check("mlr3") + } Loading required namespace: Matrix [ FAIL 49 | WARN 1997 | SKIP 4 | PASS 8793 ] == Skipped tests (4) =========================================================== * On CRAN (3): 'test_Measure.R:128:3', 'test_Task.R:673:3', 'test_parallel.R:91:3' * distr6 cannot be loaded (1): 'test_PredictionRegr.R:54:3' == Failed tests ================================================================ -- Error ('test_Learner.R:197:3'): predict train + test set -------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner, hout) at test_Learner.R:197:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_Learner.R:292:3'): mandatory properties ------------------------ Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. +-testthat::expect_error(...) at test_Learner.R:292:3 2. | \-testthat:::expect_condition_matching(...) 3. | \-testthat:::quasi_capture(...) 4. | +-testthat (local) .capture(...) 5. | | \-base::withCallingHandlers(...) 6. | \-rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 7. \-mlr3::benchmark(benchmark_grid(task, learner, resample)) 8. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 9. | \-checkmate::assert_list(callbacks) 10. | \-checkmate::checkList(...) 11. | \-... %and% checkListTypes(x, types) 12. | \-base::isTRUE(lhs) 13. \-mlr3misc::as_callbacks(callbacks) -- Failure ('test_Learner.R:460:3'): internal_valid_task is created correctly -- Expected `resample(task2, learner2, resampling)` to run without any errors. i Actually got a with text: no applicable method for 'as_callbacks' applied to an object of class "NULL" -- Error ('test_Learner.R:543:3'): learner state contains internal valid task information -- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner, rsmp("holdout")) at test_Learner.R:543:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_Measure.R:21:5'): average with micro/macro --------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. +-global with_seed(...) at test_Measure.R:19:3 2. | \-base::force(expr) 3. \-mlr3::resample(task, learner, rs) at test_Measure.R:21:5 4. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 5. | \-checkmate::assert_list(callbacks) 6. | \-checkmate::checkList(...) 7. | \-... %and% checkListTypes(x, types) 8. | \-base::isTRUE(lhs) 9. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_Measure.R:66:3'): check_prerequisites / task_properties -------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner, rsmp("holdout")) at test_Measure.R:66:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_Measure.R:90:3'): check_prerequisites / predict_type ----------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner, rsmp("holdout")) at test_Measure.R:90:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_Measure.R:106:3'): check_prerequisites / predict_sets ---------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner, rsmp("holdout")) at test_Measure.R:106:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_Measure.R:122:3'): time_train works with different predict type (#832) -- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(...) at test_Measure.R:122:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_Measure.R:158:3'): primary iters are respected ----------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner, r1, store_models = TRUE) at test_Measure.R:158:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_Measure.R:180:3'): no predict_sets required (#1094) ------------ Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(...) at test_Measure.R:180:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_MeasureInternalValidScore.R:5:3'): internal valid score -------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner, rsmp("holdout")) at test_MeasureInternalValidScore.R:5:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_PredictionClassif.R:119:3'): c --------------------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, lrn, rsmp("cv", folds = 3)) at test_PredictionClassif.R:119:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_PredictionRegr.R:22:3'): c ------------------------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, lrn, rsmp("cv", folds = 3)) at test_PredictionRegr.R:22:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_PredictionRegr.R:44:3'): c drops se (#250) --------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, lrn, rsmp("cv", folds = 3)) at test_PredictionRegr.R:44:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_benchmark.R:6:1'): (code run outside of `test_that()`) --------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::benchmark(design) at test_benchmark.R:6:1 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_encapsulate.R:49:3'): evaluate / resample ---------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. +-base::suppressMessages(...) at test_encapsulate.R:49:3 2. | \-base::withCallingHandlers(...) 3. +-base::suppressWarnings(...) 4. | \-base::withCallingHandlers(...) 5. \-mlr3::resample(task, disable_encapsulation(learner), resampling) 6. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 7. | \-checkmate::assert_list(callbacks) 8. | \-checkmate::checkList(...) 9. | \-... %and% checkListTypes(x, types) 10. | \-base::isTRUE(lhs) 11. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_encapsulate.R:87:3'): encapsulate methods produce the same results -- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner, rsmp("cv", folds = 3), store_models = TRUE) at test_encapsulate.R:87:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_errorhandling.R:15:3'): no encapsulation / resampling ---------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. +-testthat::expect_error(...) at test_errorhandling.R:15:3 2. | \-testthat:::expect_condition_matching(...) 3. | \-testthat:::quasi_capture(...) 4. | +-testthat (local) .capture(...) 5. | | \-base::withCallingHandlers(...) 6. | \-rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 7. \-mlr3::resample(tsk("iris"), learner, rsmp("cv", folds = 3)) 8. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 9. | \-checkmate::assert_list(callbacks) 10. | \-checkmate::checkList(...) 11. | \-... %and% checkListTypes(x, types) 12. | \-base::isTRUE(lhs) 13. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_errorhandling.R:63:3'): encapsulation / resample --------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner, rsmp("cv", folds = 3)) at test_errorhandling.R:63:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_errorhandling.R:80:3'): encapsulation / benchmark -------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::benchmark(benchmark_grid(task, learner, rsmp("cv", folds = 3))) at test_errorhandling.R:80:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_fallback.R:48:3'): fail during resample ------------------------ Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(tsk("iris"), learner, rsmp("cv", folds = 3)) at test_fallback.R:48:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_fallback.R:65:3'): incomplete predictions ---------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(tsk("iris"), learner, rsmp("cv", folds = 3)) at test_fallback.R:65:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_hotstart.R:134:3'): learners are hotstarted when resample is used -- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner_1, resampling, store_models = TRUE) at test_hotstart.R:134:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_hotstart.R:158:3'): learners are hotstarted when benchmark is called -- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::benchmark(design, store_models = TRUE) at test_hotstart.R:158:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_hotstart.R:187:3'): learners are trained and hotstarted when benchmark is called -- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::benchmark(design, store_models = TRUE) at test_hotstart.R:187:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_hotstart.R:222:3'): learners are cloned when hotstarting is applied -- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::benchmark(design, store_models = TRUE, allow_hotstart = TRUE) at test_hotstart.R:222:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_hotstart.R:246:3'): hotstarting works when col role is set in task -- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner_1, resampling, store_models = TRUE) at test_hotstart.R:246:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_install_pkgs.R:25:3'): extract_pkgs works ---------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(tsk("mtcars"), lrn("regr.featureless"), rsmp("holdout")) at test_install_pkgs.R:25:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_lgr.R:21:3'): log to text file --------------------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. +-base::suppressWarnings(resample(task, learner, resampling)) at test_lgr.R:21:3 2. | \-base::withCallingHandlers(...) 3. \-mlr3::resample(task, learner, resampling) 4. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 5. | \-checkmate::assert_list(callbacks) 6. | \-checkmate::checkList(...) 7. | \-... %and% checkListTypes(x, types) 8. | \-base::isTRUE(lhs) 9. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_mlr_learners_classif_debug.R:28:3'): updating model works / resample -- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(tsk("iris"), learner, rsmp("holdout"), store_models = TRUE) at test_mlr_learners_classif_debug.R:28:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_mlr_learners_classif_featureless.R:44:3'): classif.featureless works on featureless task -- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner, rsmp("holdout")) at test_mlr_learners_classif_featureless.R:44:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_mlr_learners_regr_featureless.R:11:3'): regr.featureless works on featureless task -- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner, rsmp("holdout")) at test_mlr_learners_regr_featureless.R:11:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_mlr_measures.R:31:3'): custom aggregation ---------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, lrn, rsmp("cv", folds = 3)) at test_mlr_measures.R:31:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_mlr_measures_selected_features.R:6:3'): selected_features ------ Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, lrn, rsmp("holdout"), store_models = TRUE) at test_mlr_measures_selected_features.R:6:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_mlr_measures_similarity.R:3:1'): (code run outside of `test_that()`) -- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner, rsmp("cv", folds = 3), store_models = TRUE) at test_mlr_measures_similarity.R:3:1 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_mlr_reflections.R:59:3'): resampling works --------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner, rsmp("cv", folds = 3)) at test_mlr_reflections.R:59:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_mlr_reflections.R:75:3'): benchmark works ---------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::benchmark(grid) at test_mlr_reflections.R:75:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_mlr_reflections.R:104:5'): external packages can set column roles -- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. +-global with_future(...) at test_mlr_reflections.R:103:3 2. | \-base::force(expr) 3. \-mlr3::resample(task, lrn("classif.rpart"), rsmp("cv", folds = 3)) at test_mlr_reflections.R:104:5 4. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 5. | \-checkmate::assert_list(callbacks) 6. | \-checkmate::checkList(...) 7. | \-... %and% checkListTypes(x, types) 8. | \-base::isTRUE(lhs) 9. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_mlr_resampling_holdout.R:39:3'): prediction does not drop dimension (#551) -- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::benchmark(design) at test_mlr_resampling_holdout.R:39:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_parallel.R:12:7'): parallel resample --------------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. +-global with_future(...) at test_parallel.R:7:3 2. | \-base::force(expr) 3. +-progressr::with_progress(...) at test_parallel.R:11:5 4. \-mlr3::resample(task, learner, rsmp("cv", folds = 3)) at test_parallel.R:12:7 5. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 6. | \-checkmate::assert_list(callbacks) 7. | \-checkmate::checkList(...) 8. | \-... %and% checkListTypes(x, types) 9. | \-base::isTRUE(lhs) 10. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_parallel.R:25:3'): seeds work identical during sequential and parallel execution -- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. +-global with_seed(...) at test_parallel.R:25:3 2. | \-base::force(expr) 3. +-global with_future(future::sequential, resample(task, learner, resampling)) 4. | \-base::force(expr) 5. \-mlr3::resample(task, learner, resampling) 6. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 7. | \-checkmate::assert_list(callbacks) 8. | \-checkmate::checkList(...) 9. | \-... %and% checkListTypes(x, types) 10. | \-base::isTRUE(lhs) 11. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_parallel.R:42:7'): parallel benchmark -------------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. +-global with_future(...) at test_parallel.R:40:3 2. | \-base::force(expr) 3. +-progressr::with_progress(...) at test_parallel.R:41:5 4. \-mlr3::benchmark(benchmark_grid(task, learner, rsmp("cv", folds = 3))) at test_parallel.R:42:7 5. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 6. | \-checkmate::assert_list(callbacks) 7. | \-checkmate::checkList(...) 8. | \-... %and% checkListTypes(x, types) 9. | \-base::isTRUE(lhs) 10. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_parallel.R:69:7'): real parallel resample ---------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. +-global with_future(...) at test_parallel.R:64:3 2. | \-base::force(expr) 3. +-progressr::with_progress(...) at test_parallel.R:68:5 4. \-mlr3::resample(task, learner, rsmp("cv", folds = 3)) at test_parallel.R:69:7 5. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 6. | \-checkmate::assert_list(callbacks) 7. | \-checkmate::checkList(...) 8. | \-... %and% checkListTypes(x, types) 9. | \-base::isTRUE(lhs) 10. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_parallel.R:82:3'): parallel seed ------------------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. +-global with_seed(123, resample(task, learner, rsmp("cv", folds = 3))) at test_parallel.R:82:3 2. | \-base::force(expr) 3. \-mlr3::resample(task, learner, rsmp("cv", folds = 3)) 4. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 5. | \-checkmate::assert_list(callbacks) 6. | \-checkmate::checkList(...) 7. | \-... %and% checkListTypes(x, types) 8. | \-base::isTRUE(lhs) 9. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_resample.R:4:1'): (code run outside of `test_that()`) ---------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner, resampling) at test_resample.R:4:1 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_resultdata.R:9:3'): results are ordered ------------------------ Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::benchmark(grid, store_models = TRUE) at test_resultdata.R:9:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_resultdata.R:58:3'): mlr3tuning use case ----------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::benchmark(...) at test_resultdata.R:58:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_resultdata.R:93:3'): predict set selection --------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner, resampling) at test_resultdata.R:93:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) [ FAIL 49 | WARN 1997 | SKIP 4 | PASS 8793 ] Error: Test failures Execution halted * checking PDF version of manual ... OK * DONE Status: 2 ERRORs, 1 NOTE See '/tmp/th798/16189860/R-release/832/mlr3.Rcheck/00check.log' for details. [1] "2025-03-30 01:27:38 MST" [1] "2025-03-30 01:27:38 MST" Installing package into '/tmp/th798/16189860/R-release/832/library' (as 'lib' is unspecified) * installing *source* package 'data.table' ... ** using staged installation zlib 1.2.13 is available ok * checking if R installation supports OpenMP without any extra hints... yes ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c assign.c -o assign.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c between.c -o between.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c bmerge.c -o bmerge.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c chmatch.c -o chmatch.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cj.c -o cj.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c coalesce.c -o coalesce.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dogroups.c -o dogroups.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fastmean.c -o fastmean.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fcast.c -o fcast.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fifelse.c -o fifelse.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fmelt.c -o fmelt.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c forder.c -o forder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frank.c -o frank.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fread.c -o fread.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c freadR.c -o freadR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c froll.c -o froll.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frollR.c -o frollR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frolladaptive.c -o frolladaptive.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fsort.c -o fsort.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwrite.c -o fwrite.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwriteR.c -o fwriteR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gsumm.c -o gsumm.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c idatetime.c -o idatetime.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ijoin.c -o ijoin.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c inrange.c -o inrange.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nafill.c -o nafill.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c negate.c -o negate.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nqrecreateindices.c -o nqrecreateindices.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c openmp-utils.c -o openmp-utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c programming.c -o programming.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c quickselect.c -o quickselect.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rbindlist.c -o rbindlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c reorder.c -o reorder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c shift.c -o shift.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c snprintf.c -o snprintf.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c subset.c -o subset.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c transpose.c -o transpose.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c types.c -o types.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c uniqlist.c -o uniqlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c utils.c -o utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c vecseq.c -o vecseq.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c wrappers.c -o wrappers.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o data.table.so assign.o between.o bmerge.o chmatch.o cj.o coalesce.o dogroups.o fastmean.o fcast.o fifelse.o fmelt.o forder.o frank.o fread.o freadR.o froll.o frollR.o frolladaptive.o fsort.o fwrite.o fwriteR.o gsumm.o idatetime.o ijoin.o init.o inrange.o nafill.o negate.o nqrecreateindices.o openmp-utils.o programming.o quickselect.o rbindlist.o reorder.o shift.o snprintf.o subset.o transpose.o types.o uniqlist.o utils.o vecseq.o wrappers.o -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz PKG_CFLAGS = -fopenmp -I/home/th798/.conda/envs/emacs1/include PKG_LIBS = -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz if [ "data.table.so" != "data_table.so" ]; then mv data.table.so data_table.so; fi if [ "" != "Windows_NT" ] && [ `uname -s` = 'Darwin' ]; then install_name_tool -id data_table.so data_table.so; fi installing to /tmp/th798/16189860/R-release/832/library/00LOCK-data.table/00new/data.table/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (data.table) [1] "2025-03-30 01:27:57 MST" * using log directory '/tmp/th798/16189860/R-release/832/mlr3.Rcheck' * using R version 4.4.3 (2025-02-28) * using platform: x86_64-pc-linux-gnu * R was compiled by gcc (Spack GCC) 12.2.0 GNU Fortran (Spack GCC) 12.2.0 * running under: Red Hat Enterprise Linux 8.10 (Ootpa) * using session charset: ASCII * checking for file 'mlr3/DESCRIPTION' ... OK * this is package 'mlr3' version '0.23.0' * 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 executable files ... OK * checking for hidden files and directories ... OK * checking for portable file names ... OK * checking for sufficient/correct file permissions ... OK * checking whether package 'mlr3' can be installed ... OK * checking installed package size ... OK * checking package 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 ... OK * checking whether the package can be loaded with stated dependencies ... OK * checking whether the package can be unloaded cleanly ... OK * checking whether the namespace can be loaded with stated dependencies ... OK * checking whether the namespace can be unloaded cleanly ... OK * checking whether startup messages can be suppressed ... 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 ... OK * checking Rd files ... OK * checking Rd metadata ... OK * checking Rd cross-references ... NOTE Package unavailable to check Rd xrefs: 'mlr3oml' * 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 examples ... ERROR Running examples in 'mlr3-Ex.R' failed The error most likely occurred in: > base::assign(".ptime", proc.time(), pos = "CheckExEnv") > ### Name: BenchmarkResult > ### Title: Container for Benchmarking Results > ### Aliases: BenchmarkResult > > ### ** Examples > > set.seed(123) > learners = list( + lrn("classif.featureless", predict_type = "prob"), + lrn("classif.rpart", predict_type = "prob") + ) > > design = benchmark_grid( + tasks = list(tsk("sonar"), tsk("penguins")), + learners = learners, + resamplings = rsmp("cv", folds = 3) + ) > print(design) task learner resampling 1: sonar classif.featureless cv 2: sonar classif.rpart cv 3: penguins classif.featureless cv 4: penguins classif.rpart cv > > bmr = benchmark(design) Error in UseMethod("as_callbacks") : no applicable method for 'as_callbacks' applied to an object of class "NULL" Calls: benchmark ... assert_list -> checkList -> %and% -> isTRUE -> as_callbacks Execution halted * checking for unstated dependencies in 'tests' ... OK * checking tests ... Running 'testthat.R' ERROR Running the tests in 'tests/testthat.R' failed. Complete output: > if (requireNamespace("testthat", quietly = TRUE)) { + library("checkmate") + library("testthat") + library("mlr3") + test_check("mlr3") + } Loading required namespace: Matrix [ FAIL 49 | WARN 1997 | SKIP 4 | PASS 8793 ] == Skipped tests (4) =========================================================== * On CRAN (3): 'test_Measure.R:128:3', 'test_Task.R:673:3', 'test_parallel.R:91:3' * distr6 cannot be loaded (1): 'test_PredictionRegr.R:54:3' == Failed tests ================================================================ -- Error ('test_Learner.R:197:3'): predict train + test set -------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner, hout) at test_Learner.R:197:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_Learner.R:292:3'): mandatory properties ------------------------ Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. +-testthat::expect_error(...) at test_Learner.R:292:3 2. | \-testthat:::expect_condition_matching(...) 3. | \-testthat:::quasi_capture(...) 4. | +-testthat (local) .capture(...) 5. | | \-base::withCallingHandlers(...) 6. | \-rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 7. \-mlr3::benchmark(benchmark_grid(task, learner, resample)) 8. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 9. | \-checkmate::assert_list(callbacks) 10. | \-checkmate::checkList(...) 11. | \-... %and% checkListTypes(x, types) 12. | \-base::isTRUE(lhs) 13. \-mlr3misc::as_callbacks(callbacks) -- Failure ('test_Learner.R:460:3'): internal_valid_task is created correctly -- Expected `resample(task2, learner2, resampling)` to run without any errors. i Actually got a with text: no applicable method for 'as_callbacks' applied to an object of class "NULL" -- Error ('test_Learner.R:543:3'): learner state contains internal valid task information -- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner, rsmp("holdout")) at test_Learner.R:543:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_Measure.R:21:5'): average with micro/macro --------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. +-global with_seed(...) at test_Measure.R:19:3 2. | \-base::force(expr) 3. \-mlr3::resample(task, learner, rs) at test_Measure.R:21:5 4. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 5. | \-checkmate::assert_list(callbacks) 6. | \-checkmate::checkList(...) 7. | \-... %and% checkListTypes(x, types) 8. | \-base::isTRUE(lhs) 9. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_Measure.R:66:3'): check_prerequisites / task_properties -------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner, rsmp("holdout")) at test_Measure.R:66:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_Measure.R:90:3'): check_prerequisites / predict_type ----------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner, rsmp("holdout")) at test_Measure.R:90:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_Measure.R:106:3'): check_prerequisites / predict_sets ---------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner, rsmp("holdout")) at test_Measure.R:106:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_Measure.R:122:3'): time_train works with different predict type (#832) -- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(...) at test_Measure.R:122:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_Measure.R:158:3'): primary iters are respected ----------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner, r1, store_models = TRUE) at test_Measure.R:158:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_Measure.R:180:3'): no predict_sets required (#1094) ------------ Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(...) at test_Measure.R:180:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_MeasureInternalValidScore.R:5:3'): internal valid score -------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner, rsmp("holdout")) at test_MeasureInternalValidScore.R:5:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_PredictionClassif.R:119:3'): c --------------------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, lrn, rsmp("cv", folds = 3)) at test_PredictionClassif.R:119:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_PredictionRegr.R:22:3'): c ------------------------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, lrn, rsmp("cv", folds = 3)) at test_PredictionRegr.R:22:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_PredictionRegr.R:44:3'): c drops se (#250) --------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, lrn, rsmp("cv", folds = 3)) at test_PredictionRegr.R:44:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_benchmark.R:6:1'): (code run outside of `test_that()`) --------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::benchmark(design) at test_benchmark.R:6:1 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_encapsulate.R:49:3'): evaluate / resample ---------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. +-base::suppressMessages(...) at test_encapsulate.R:49:3 2. | \-base::withCallingHandlers(...) 3. +-base::suppressWarnings(...) 4. | \-base::withCallingHandlers(...) 5. \-mlr3::resample(task, disable_encapsulation(learner), resampling) 6. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 7. | \-checkmate::assert_list(callbacks) 8. | \-checkmate::checkList(...) 9. | \-... %and% checkListTypes(x, types) 10. | \-base::isTRUE(lhs) 11. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_encapsulate.R:87:3'): encapsulate methods produce the same results -- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner, rsmp("cv", folds = 3), store_models = TRUE) at test_encapsulate.R:87:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_errorhandling.R:15:3'): no encapsulation / resampling ---------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. +-testthat::expect_error(...) at test_errorhandling.R:15:3 2. | \-testthat:::expect_condition_matching(...) 3. | \-testthat:::quasi_capture(...) 4. | +-testthat (local) .capture(...) 5. | | \-base::withCallingHandlers(...) 6. | \-rlang::eval_bare(quo_get_expr(.quo), quo_get_env(.quo)) 7. \-mlr3::resample(tsk("iris"), learner, rsmp("cv", folds = 3)) 8. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 9. | \-checkmate::assert_list(callbacks) 10. | \-checkmate::checkList(...) 11. | \-... %and% checkListTypes(x, types) 12. | \-base::isTRUE(lhs) 13. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_errorhandling.R:63:3'): encapsulation / resample --------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner, rsmp("cv", folds = 3)) at test_errorhandling.R:63:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_errorhandling.R:80:3'): encapsulation / benchmark -------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::benchmark(benchmark_grid(task, learner, rsmp("cv", folds = 3))) at test_errorhandling.R:80:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_fallback.R:48:3'): fail during resample ------------------------ Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(tsk("iris"), learner, rsmp("cv", folds = 3)) at test_fallback.R:48:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_fallback.R:65:3'): incomplete predictions ---------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(tsk("iris"), learner, rsmp("cv", folds = 3)) at test_fallback.R:65:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_hotstart.R:134:3'): learners are hotstarted when resample is used -- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner_1, resampling, store_models = TRUE) at test_hotstart.R:134:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_hotstart.R:158:3'): learners are hotstarted when benchmark is called -- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::benchmark(design, store_models = TRUE) at test_hotstart.R:158:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_hotstart.R:187:3'): learners are trained and hotstarted when benchmark is called -- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::benchmark(design, store_models = TRUE) at test_hotstart.R:187:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_hotstart.R:222:3'): learners are cloned when hotstarting is applied -- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::benchmark(design, store_models = TRUE, allow_hotstart = TRUE) at test_hotstart.R:222:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_hotstart.R:246:3'): hotstarting works when col role is set in task -- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner_1, resampling, store_models = TRUE) at test_hotstart.R:246:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_install_pkgs.R:25:3'): extract_pkgs works ---------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(tsk("mtcars"), lrn("regr.featureless"), rsmp("holdout")) at test_install_pkgs.R:25:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_lgr.R:21:3'): log to text file --------------------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. +-base::suppressWarnings(resample(task, learner, resampling)) at test_lgr.R:21:3 2. | \-base::withCallingHandlers(...) 3. \-mlr3::resample(task, learner, resampling) 4. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 5. | \-checkmate::assert_list(callbacks) 6. | \-checkmate::checkList(...) 7. | \-... %and% checkListTypes(x, types) 8. | \-base::isTRUE(lhs) 9. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_mlr_learners_classif_debug.R:28:3'): updating model works / resample -- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(tsk("iris"), learner, rsmp("holdout"), store_models = TRUE) at test_mlr_learners_classif_debug.R:28:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_mlr_learners_classif_featureless.R:44:3'): classif.featureless works on featureless task -- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner, rsmp("holdout")) at test_mlr_learners_classif_featureless.R:44:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_mlr_learners_regr_featureless.R:11:3'): regr.featureless works on featureless task -- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner, rsmp("holdout")) at test_mlr_learners_regr_featureless.R:11:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_mlr_measures.R:31:3'): custom aggregation ---------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, lrn, rsmp("cv", folds = 3)) at test_mlr_measures.R:31:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_mlr_measures_selected_features.R:6:3'): selected_features ------ Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, lrn, rsmp("holdout"), store_models = TRUE) at test_mlr_measures_selected_features.R:6:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_mlr_measures_similarity.R:3:1'): (code run outside of `test_that()`) -- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner, rsmp("cv", folds = 3), store_models = TRUE) at test_mlr_measures_similarity.R:3:1 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_mlr_reflections.R:59:3'): resampling works --------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner, rsmp("cv", folds = 3)) at test_mlr_reflections.R:59:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_mlr_reflections.R:75:3'): benchmark works ---------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::benchmark(grid) at test_mlr_reflections.R:75:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_mlr_reflections.R:104:5'): external packages can set column roles -- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. +-global with_future(...) at test_mlr_reflections.R:103:3 2. | \-base::force(expr) 3. \-mlr3::resample(task, lrn("classif.rpart"), rsmp("cv", folds = 3)) at test_mlr_reflections.R:104:5 4. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 5. | \-checkmate::assert_list(callbacks) 6. | \-checkmate::checkList(...) 7. | \-... %and% checkListTypes(x, types) 8. | \-base::isTRUE(lhs) 9. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_mlr_resampling_holdout.R:39:3'): prediction does not drop dimension (#551) -- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::benchmark(design) at test_mlr_resampling_holdout.R:39:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_parallel.R:12:7'): parallel resample --------------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. +-global with_future(...) at test_parallel.R:7:3 2. | \-base::force(expr) 3. +-progressr::with_progress(...) at test_parallel.R:11:5 4. \-mlr3::resample(task, learner, rsmp("cv", folds = 3)) at test_parallel.R:12:7 5. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 6. | \-checkmate::assert_list(callbacks) 7. | \-checkmate::checkList(...) 8. | \-... %and% checkListTypes(x, types) 9. | \-base::isTRUE(lhs) 10. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_parallel.R:25:3'): seeds work identical during sequential and parallel execution -- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. +-global with_seed(...) at test_parallel.R:25:3 2. | \-base::force(expr) 3. +-global with_future(future::sequential, resample(task, learner, resampling)) 4. | \-base::force(expr) 5. \-mlr3::resample(task, learner, resampling) 6. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 7. | \-checkmate::assert_list(callbacks) 8. | \-checkmate::checkList(...) 9. | \-... %and% checkListTypes(x, types) 10. | \-base::isTRUE(lhs) 11. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_parallel.R:42:7'): parallel benchmark -------------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. +-global with_future(...) at test_parallel.R:40:3 2. | \-base::force(expr) 3. +-progressr::with_progress(...) at test_parallel.R:41:5 4. \-mlr3::benchmark(benchmark_grid(task, learner, rsmp("cv", folds = 3))) at test_parallel.R:42:7 5. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 6. | \-checkmate::assert_list(callbacks) 7. | \-checkmate::checkList(...) 8. | \-... %and% checkListTypes(x, types) 9. | \-base::isTRUE(lhs) 10. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_parallel.R:69:7'): real parallel resample ---------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. +-global with_future(...) at test_parallel.R:64:3 2. | \-base::force(expr) 3. +-progressr::with_progress(...) at test_parallel.R:68:5 4. \-mlr3::resample(task, learner, rsmp("cv", folds = 3)) at test_parallel.R:69:7 5. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 6. | \-checkmate::assert_list(callbacks) 7. | \-checkmate::checkList(...) 8. | \-... %and% checkListTypes(x, types) 9. | \-base::isTRUE(lhs) 10. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_parallel.R:82:3'): parallel seed ------------------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. +-global with_seed(123, resample(task, learner, rsmp("cv", folds = 3))) at test_parallel.R:82:3 2. | \-base::force(expr) 3. \-mlr3::resample(task, learner, rsmp("cv", folds = 3)) 4. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 5. | \-checkmate::assert_list(callbacks) 6. | \-checkmate::checkList(...) 7. | \-... %and% checkListTypes(x, types) 8. | \-base::isTRUE(lhs) 9. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_resample.R:4:1'): (code run outside of `test_that()`) ---------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner, resampling) at test_resample.R:4:1 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_resultdata.R:9:3'): results are ordered ------------------------ Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::benchmark(grid, store_models = TRUE) at test_resultdata.R:9:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_resultdata.R:58:3'): mlr3tuning use case ----------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::benchmark(...) at test_resultdata.R:58:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) -- Error ('test_resultdata.R:93:3'): predict set selection --------------------- Error in `UseMethod("as_callbacks")`: no applicable method for 'as_callbacks' applied to an object of class "NULL" Backtrace: x 1. \-mlr3::resample(task, learner, resampling) at test_resultdata.R:93:3 2. +-mlr3misc::assert_callbacks(as_callbacks(callbacks)) 3. | \-checkmate::assert_list(callbacks) 4. | \-checkmate::checkList(...) 5. | \-... %and% checkListTypes(x, types) 6. | \-base::isTRUE(lhs) 7. \-mlr3misc::as_callbacks(callbacks) [ FAIL 49 | WARN 1997 | SKIP 4 | PASS 8793 ] Error: Test failures Execution halted * checking PDF version of manual ... OK * DONE Status: 2 ERRORs, 1 NOTE See '/tmp/th798/16189860/R-release/832/mlr3.Rcheck/00check.log' for details. [1] "2025-03-30 01:32:02 MST" > system(paste(c("diff -u", Rcheck.list), collapse=" ")) > library(data.table, lib.loc=R.home("library")) > (sig.diff.dt <- myDiff(Rvers)) Key: Empty data.table (0 rows and 3 cols): checking,master,release > > ## If there are significant differences, use git bisect to find when > ## they started. > if(nrow(sig.diff.dt)){ + dt.git <- file.path(task.dir, "data.table.git") + system(paste("cd ~/R/data.table && git fetch --tags")) + system(paste("git clone ~/R/data.table", dt.git)) + release.tag <- gsub(".tar.gz|.*_", "", cargs[["release"]]) + rev.parse.cmd <- paste( + "cd", dt.git, "&& git rev-parse master") + master.sha <- system(rev.parse.cmd, intern=TRUE) + merge.base.cmd <- paste( + "cd", dt.git, "&& git merge-base master", release.tag) + merge.base.sha <- system(merge.base.cmd, intern=TRUE) + old.sha <- merge.base.sha + run_R <- file.path(proj.dir, "install_dt_then_check_dep.R") + sig.diff.dt[, first.bad.commit := NA_character_] + sig.diff.dt[, comments := NA_character_] + for(diff.i in 1:nrow(sig.diff.dt)){ + sig.diff.row <- sig.diff.dt[diff.i] + bisect.cmd <- paste( + "cd", dt.git, "&&", + "git bisect start &&", + "git bisect old", old.sha, "&&", + "git bisect new master &&", + "git bisect run", + R.home('bin/Rscript'), + run_R, + shQuote(sig.diff.row$checking), + sig.diff.row$release, + rev.dep.release.tar.gz, + release.tag) + print(bisect.cmd) + bisect.out <- system(bisect.cmd, intern=TRUE) + cat(bisect.out,sep="\n") + if(is.null(attr(bisect.out,"status"))){ + first.bad.sha <- nc::capture_all_str( + bisect.out, + sha="[0-9a-f]+", + " is the first new commit")$sha + parent.cmd <- paste( + "cd ~/R/data.table && git log --pretty=%P -n 1", + first.bad.sha) + parent.sha <- system(parent.cmd, intern=TRUE) + sig.diff.dt[diff.i, first.bad.commit := first.bad.sha] + parent.msg <- paste0("parent=", parent.sha) + this.comment <- if(parent.sha==old.sha){ + paste(parent.msg, "same as git bisect old") + }else if(first.bad.sha==master.sha){ + paste("same as git bisect new=master,", parent.msg) + }else{ + parent.msg + } + sig.diff.dt[diff.i, comments := this.comment] + } + } + ## add CRAN column. + sig.diff.dt[, CRAN := { + flavor <- get_flavor(Rvers) + details <- data.table(flavor=unique(flavor))[, { + base <- "https://www.r-project.org/nosvn/R.check/" + u <- paste0(base, flavor, "/", rev.dep, "-00check.txt") + check.txt <- tempfile() + tryCatch({ + download.file(u, check.txt, quiet=TRUE) + }, error=function(e){ + NULL + }) + check.lines <- if(file.exists(check.txt)){ + readLines(check.txt,encoding="UTF-8") + }else{ + "" + } + repl.lines <- gsub("[\u2018\u2019]", "'", check.lines) + ##gsub("[‘’]", "'", check.lines) does not work with LC_ALL=C. + myStatus(line.vec=repl.lines) + }, by=flavor] + select.dt <- data.table(flavor, checking) + details[select.dt, msg, on=.(flavor, checking)] + }] + dir.create(file.path(job.dir, Rvers)) + diffs.csv <- file.path(job.dir, Rvers, "significant_differences.csv") + data.table::fwrite(sig.diff.dt, diffs.csv) + print(sig.diff.dt) + } >