Last updated on 2026-04-15 16:52:16 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 3.1.0 | 3.06 | 89.85 | 92.91 | OK | |
| r-devel-linux-x86_64-debian-gcc | 3.1.0 | 2.09 | 68.96 | 71.05 | OK | |
| r-devel-linux-x86_64-fedora-clang | 3.1.0 | 149.28 | OK | |||
| r-devel-linux-x86_64-fedora-gcc | 3.1.0 | 164.91 | OK | |||
| r-devel-macos-arm64 | 3.1.0 | 1.00 | 27.00 | 28.00 | OK | |
| r-devel-windows-x86_64 | 3.1.0 | 5.00 | 109.00 | 114.00 | OK | |
| r-patched-linux-x86_64 | 3.1.0 | 3.47 | 86.54 | 90.01 | OK | |
| r-release-linux-x86_64 | 3.1.0 | 2.99 | 83.87 | 86.86 | OK | |
| r-release-macos-arm64 | 3.1.0 | 1.00 | 26.00 | 27.00 | OK | |
| r-release-macos-x86_64 | 3.1.0 | 3.00 | 167.00 | 170.00 | OK | |
| r-release-windows-x86_64 | 3.1.0 | 6.00 | 91.00 | 97.00 | ERROR | |
| r-oldrel-macos-arm64 | 3.1.0 | 1.00 | 33.00 | 34.00 | OK | |
| r-oldrel-macos-x86_64 | 3.1.0 | 3.00 | 247.00 | 250.00 | OK | |
| r-oldrel-windows-x86_64 | 3.1.0 | 7.00 | 132.00 | 139.00 | OK |
Version: 3.1.0
Check: tests
Result: ERROR
Running 'runit.R' [3s]
Running 'testthat.R' [1s]
Running 'tinytest.R' [2s]
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 = "treePlotArea")
+ } else {
+ require("treePlotArea", 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 = "treePlotArea")
+ }
+ }
Attaching package: 'treePlotArea'
The following object is masked from 'package:datasets':
trees
> if (! dir.exists(unit_dir)) {
+ stop("Can not find RUnit test directory ", unit_dir,
+ ". Try to (re)install the package first.")
+ }
> setup_file <- file.path(unit_dir, "setup.R")
> if (file.exists(setup_file)) source(setup_file)
> package_suite <- RUnit::defineTestSuite("treePlotArea_unit_test",
+ dirs = unit_dir,
+ testFileRegexp = "^runit.*\\.[rR]",
+ testFuncRegexp = "^test_+")
> test_result <- RUnit::runTestSuite(package_suite)
Executing test function test_check_boundaries ... Error in treePlotArea:::check_boundaries(boundary) :
Found boundary through the plot in corner 5 of tract 9999!
Stopping.
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
Error in treePlotArea:::check_boundaries(boundary) :
Found boundary through the plot in corner 5 of tract 9999!
Stopping.
done successfully.
Executing test function test_get_boundary_polygons ... Error in check_boundaries(current_boundaries, stop_on_error = stop_on_error, :
Found boundary through the plot in corner 2 of tract 2607!
Stopping.
done successfully.
Executing test function test_get_boundary_radius ... done successfully.
Executing test function test_check_tree ... done successfully.
Executing test function test_get_correction_factor ...
Flavor: r-release-windows-x86_64