- using R Under development (unstable) (2026-02-10 r89394)
- using platform: aarch64-apple-darwin23
- R was compiled by
Apple clang version 17.0.0 (clang-1700.3.19.1)
GNU Fortran (GCC) 14.2.0
- running under: macOS Sequoia 15.7.1
- using session charset: UTF-8
* current time: 2026-02-12 02:20:19 UTC
- checking for file ‘stringx/DESCRIPTION’ ... OK
- checking extension type ... Package
- this is package ‘stringx’ version ‘0.2.9’
- 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 ‘stringx’ can be installed ... [1s/1s] OK
See the install log for details.
- 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 ... [0s/0s] OK
- checking whether the package can be loaded with stated dependencies ... [0s/0s] OK
- checking whether the package can be unloaded cleanly ... [0s/0s] OK
- checking whether the namespace can be loaded with stated dependencies ... [0s/0s] OK
- checking whether the namespace can be unloaded cleanly ... [0s/0s] OK
- checking loading without being on the library search path ... [0s/0s] 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 ... [1s/1s] OK
- checking Rd files ... [0s/0s] OK
- checking Rd metadata ... OK
- checking Rd cross-references ... OK
- checking for missing documentation entries ... OK
- checking for code/documentation mismatches ... OK
- checking Rd \usage sections ... OK
- checking Rd contents ... OK
- checking for unstated dependencies in examples ... OK
- checking examples ... [0s/0s] OK
- checking for unstated dependencies in ‘tests’ ... OK
- checking tests ... [1s/1s] ERROR
Running ‘realtest.R’ [1s/1s]
Running the tests in ‘tests/realtest.R’ failed.
Complete output:
> # This file is part of the 'stringx' project.
> # Copyleft (c) 2021-2025, Marek Gagolewski <https://www.gagolewski.com>
>
> # Runs all unit tests for the package
>
> this_package <- "stringx"
>
> set.seed(123)
> library(this_package, character.only=TRUE)
Attaching package: 'stringx'
The following objects are masked from 'package:base':
casefold, chartr, endsWith, gregexec, gregexpr, grep, grepl, gsub,
ISOdate, ISOdatetime, nchar, nzchar, paste, paste0, regexec,
regexpr, sprintf, startsWith, strftime, strptime, strrep, strsplit,
strtrim, strwrap, sub, substr, substr<-, substring, substring<-,
Sys.time, tolower, toupper, trimws, xtfrm, xtfrm.default
> if (require("realtest", quietly=TRUE)) {
+ f <- file.path(path.package(this_package), "realtest")
+ r <- test_dir(f, ".*\\.R$")
+ x <- summary(r)
+
+ names(r) <- row.names(x)
+ fails <- x[x[["match"]] == "fail", , drop=FALSE]
+ if (nrow(fails) > 0) {
+ fails2 <- as.data.frame(fails[,
+ !(names(fails) %in% ".expr") & !sapply(fails, function(x) all(is.na(x))),
+ drop=FALSE])
+ for (i in row.names(fails2)) {
+ cat(sprintf("%s:%d:\n", fails2[i, ".file"], fails2[i, ".line"]))
+ cat(" value: "); str(r[[i]][["object"]][["value"]], indent.str=" ")
+ cat(" sides: "); str(r[[i]][["object"]][["sides"]], indent.str=" ")
+ }
+
+ if (require("stringi", quietly=TRUE))
+ cat(sprintf("%s; %s\n", stri_info(TRUE), Sys.getlocale()))
+
+ stop("some tests failed")
+ }
+ }
/Volumes/Builds/packages/sonoma-arm64/results/4.6/stringx.Rcheck/stringx/realtest/strptime-all.R:89:
value: chr "--T::+1200"
sides: NULL
stringi_1.8.7 (en_US.UTF-8; ICU4C 71.1 [system#U_CHARSET_IS_UTF8]; Unicode 14.0); C/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
Error: some tests failed
Execution halted
- checking PDF version of manual ... [3s/3s] OK
- DONE
Status: 1 ERROR
- using check arguments '--no-clean-on-error '