Last updated on 2026-07-23 02:50:49 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 1.4.0 | 2.14 | 40.27 | 42.41 | OK | |
| r-devel-linux-x86_64-debian-gcc | 1.4.0 | 1.73 | 29.99 | 31.72 | ERROR | |
| r-devel-linux-x86_64-fedora-clang | 1.4.0 | 63.24 | OK | |||
| r-devel-linux-x86_64-fedora-gcc | 1.4.0 | 32.79 | OK | |||
| r-devel-windows-x86_64 | 1.4.0 | 5.00 | 79.00 | 84.00 | OK | |
| r-patched-linux-x86_64 | 1.4.0 | 2.44 | 37.45 | 39.89 | OK | |
| r-release-linux-x86_64 | 1.4.0 | 2.20 | 37.10 | 39.30 | OK | |
| r-release-macos-arm64 | 1.4.0 | 1.00 | 18.00 | 19.00 | OK | |
| r-release-macos-x86_64 | 1.4.0 | 2.00 | 58.00 | 60.00 | OK | |
| r-release-windows-x86_64 | 1.4.0 | 6.00 | 93.00 | 99.00 | OK | |
| r-oldrel-macos-arm64 | 1.4.0 | OK | ||||
| r-oldrel-macos-x86_64 | 1.4.0 | 2.00 | 56.00 | 58.00 | OK | |
| r-oldrel-windows-x86_64 | 1.4.0 | 8.00 | 101.00 | 109.00 | OK |
Version: 1.4.0
Check: tests
Result: ERROR
Running ‘runit.R’ [0s/0s]
Running ‘testthat.R’ [1s/1s]
Running the tests in ‘tests/runit.R’ failed.
Complete output:
> #!/usr/bin/Rscript --vanilla
> is_failure <- function(result) {
+ res <- RUnit::getErrors(result)
+ names(res) <- tolower(names(res)) # soothe lintr
+ sum_of_exceptions <- res[["nerr"]] + res[["nfail"]]
+ fail <- as.logical(sum_of_exceptions)
+ return(fail)
+ }
>
> if (interactive()) {
+ pkgload::load_all(path = ".") # needed to use pkgload's shim version of
+ # base's system.file
+ unit_dir <- system.file("inst", "runit_tests", package = "cleanr")
+ } else {
+ require("cleanr", quietly = TRUE, character.only = TRUE) ||
+ pkgload::load_all(path = ".") # needed to use pkgload's shim version of
+ r_call <- commandArgs(trailingOnly = FALSE)
+ if (any(grepl("--file", r_call))) {
+ unit_dir <- file.path("inst", "runit_tests")
+ } else {
+ unit_dir <- system.file("runit_tests", package = "cleanr")
+ }
+ }
> if (! dir.exists(unit_dir)) {
+ stop("Can not find RUnit test directory ", unit_dir,
+ ". Try to (re)install the package first.")
+ }
> package_suite <- RUnit::defineTestSuite("cleanr_unit_test",
+ dirs = unit_dir,
+ testFileRegexp = "^.*\\.[rR]",
+ testFuncRegexp = "^test_+")
> test_result <- RUnit::runTestSuite(package_suite)
Executing test function test_check_nesting_depth ... Error in cleanr::check_nesting_depth(failing_function) :
found nesting depth 4, max_nesting_depth was 3
In addition: Warning messages:
1: In RNGkind(kind = testSuite$rngKind, normal.kind = testSuite$rngNormalKind) :
RNGkind: Marsaglia-Multicarry has poor statistical properties
2: In RNGkind(kind = testSuite$rngKind, normal.kind = testSuite$rngNormalKind) :
RNGkind: severe deviations from normality for Kinderman-Ramage + Marsaglia-Multicarry
done successfully.
Executing test function test_check_return ... Error in cleanr::check_return(failing_function) :
found no return() statement at all.
In addition: Warning message:
In cleanr::check_return(failing_function) :*** buffer overflow detected ***: terminated
Aborted
Flavor: r-devel-linux-x86_64-debian-gcc