[R-pkg-devel] Help Debugging Debian Error
On Fri, 15 May 2020 03:50:12 -0400
Paul Hibbing <paulhibbing at gmail.com> wrote:
Complete output:
> library(testthat)
> library(PAutilities)
>
> test_check("PAutilities")
It seems to me that the R process crashes while running your tests, but
since testthat::test_check captures everything to summarise it later,
you don't get to know where the crash occurs.
Perhaps if you (temporarily) move your tests out of testthat/
subdirectory and remove the context() and testthat::test_that("...",
{ ... }) calls, you would be able to see the exact location of the
crash in the *.Rout files?
That said, it's probably one of your dependencies that's responsible
for the crash, not your package, since there is no compiled code.
Best regards, Ivan