Re: [R] Output from test script during R CMD check

2010-03-03 Thread Duncan Murdoch
On 03/03/2010 5:25 PM, DarioAustralia wrote: Ah yes sorry about that it was a vague posting. What I'd like to see when I do a R CMD check on the package and it gets to the part where it runs the test script, I'd like to show to the user on the screen the progress of the testing. What happens now

Re: [R] Output from test script during R CMD check

2010-03-03 Thread DarioAustralia
Ah yes sorry about that it was a vague posting. What I'd like to see when I do a R CMD check on the package and it gets to the part where it runs the test script, I'd like to show to the user on the screen the progress of the testing. What happens now is none of the cat("Test X was successful. \n

Re: [R] Output from test script during R CMD check

2010-03-03 Thread Dieter Menne
DarioAustralia wrote: > > In the .R file I put in the tests directory, I have a number of cat("My > text here") type statements, that explain when a certain test completed > successfully but everything I tried so far (like putting sink(NULL) at the > top of the .R file) hasn't worked. Does someo

[R] Output from test script during R CMD check

2010-03-02 Thread DarioAustralia
Hello, In the .R file I put in the tests directory, I have a number of cat("My text here") type statements, that explain when a certain test completed successfully but everything I tried so far (like putting sink(NULL) at the top of the .R file) hasn't worked. Does someone know what to do here ?