Skip to content

CMD check - where/what/how?

3 messages · Simon Fear, Kurt Hornik, Brian Ripley

#
I've seen a few recent references here to `passing the R CMD check'. Is
this Unix/Linux only? (I'm presuming it's some kind of function
reference check ... that would be really useful)

Simon
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject !)  To: r-help-request at stat.math.ethz.ch
_._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
#
Yes sorry this is not documented.  It definitely works under Unix.
Usage is

	R CMD check [options] [-l lib] pkg_1 ... pkg_n

where `pkg_i' is the file path to the sources of the ith package for
checking.  Currently, only the examples are checked for completion of
execution, more will be added in the future.

-k

-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject !)  To: r-help-request at stat.math.ethz.ch
_._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
#
On Wed, 14 Apr 1999, Simon Fear wrote:

            
Yes, at present. What it does is to run all the examples on the help
pages of a package, which may be useful if there are any!  It needs the
package source as well (although in principle it need not).

I am working on a Windows equivalent.

Brian