- using R Under development (unstable) (2026-03-16 r89642 ucrt)
- using platform: x86_64-w64-mingw32
- R was compiled by
gcc.exe (GCC) 14.3.0
GNU Fortran (GCC) 14.3.0
- running under: Windows Server 2022 x64 (build 20348)
- using session charset: UTF-8
* current time: 2026-03-17 17:02:25 UTC
- checking for file 'treePlotArea/DESCRIPTION' ... OK
- this is package 'treePlotArea' version '3.1.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 hidden files and directories ... OK
- checking for portable file names ... OK
- checking whether package 'treePlotArea' can be installed ... OK
See the install log for details.
- checking installed package size ... OK
- checking package directory ... OK
- checking 'build' directory ... OK
- checking DESCRIPTION meta-information ... OK
- checking top-level files ... OK
- checking for left-over files ... OK
- checking index information ... OK
- checking package subdirectories ... OK
- checking code files for non-ASCII characters ... OK
- checking R files for syntax errors ... OK
- checking whether the package can be loaded ... [0s] OK
- checking whether the package can be loaded with stated dependencies ... [0s] OK
- checking whether the package can be unloaded cleanly ... [0s] OK
- checking whether the namespace can be loaded with stated dependencies ... [0s] OK
- checking whether the namespace can be unloaded cleanly ... [0s] OK
- checking loading without being on the library search path ... [0s] OK
- checking use of S3 registration ... OK
- checking dependencies in R code ... OK
- checking S3 generic/method consistency ... OK
- checking replacement functions ... OK
- checking foreign function calls ... OK
- checking R code for possible problems ... [4s] OK
- checking Rd files ... [1s] OK
- checking Rd metadata ... OK
- checking Rd cross-references ... OK
- checking for missing documentation entries ... OK
- checking for code/documentation mismatches ... OK
- checking Rd \usage sections ... OK
- checking Rd contents ... OK
- checking for unstated dependencies in examples ... OK
- checking contents of 'data' directory ... OK
- checking data for non-ASCII characters ... [0s] OK
- checking LazyData ... OK
- checking data for ASCII and uncompressed saves ... OK
- checking R/sysdata.rda ... OK
- checking sizes of PDF files under 'inst/doc' ... OK
- checking installed files from 'inst/doc' ... OK
- checking files in 'vignettes' ... OK
- checking examples ... [7s] OK
- checking for unstated dependencies in 'tests' ... OK
- checking tests ... [7s] ERROR
Running 'runit.R' [5s]
Running 'testthat.R' [1s]
Running 'tinytest.R' [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 = "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 ...
- checking for unstated dependencies in vignettes ... OK
- checking package vignettes ... OK
- checking re-building of vignette outputs ... [30s] OK
- checking PDF version of manual ... [19s] OK
- checking HTML version of manual ... [5s] OK
- DONE
Status: 1 ERROR