Search code examples
rcran

R CMD check options for "more rigorous testing" - 2.15.0


According to the release notes for 2.15:

There are new options for more rigorous testing by R CMD check selected by environment variables – see the ‘Writing R Extensions’ manual.

  1. Is "more rigorous" relative to the default set of checks?
  2. I can't find the supporting text in the manual. I'm sure I'm just missing it
  3. What options do I specify to perform the MOST rigorous testing?

Solution

  • It seems that:

    1. YES, 'more rigorous' is relative to a default set of checks. The default checks do not test everything that can be tested.

    2. The most rigorous way to test is to specify all possible tests via config file values in check.Renviron (see R Internals and Writing R Plugins manuals)

    3. There is no easy way (i.e. command-line parameter) to check it all. A package author would have to maintain a config file (check.Renviron) as new versions of R are released.