Re: [R-pkg-devel] how to make "r-release-osx-x86_64-mavericks" machine support rgl 3D plots

2015-08-17 Thread Hadley Wickham
>> | Check DetailsVersion: 1.8.3 >> | Check: tests >> | Result: ERROR >> | Running the tests in ‘tests/stdUsage.R’ failed. >> | Last 13 lines of output: >> | > plot(ffTest42,col=Col,plot_GOF=TRUE,speed=T) >> | [1] "compute goodness-of-fit with leave-one-out k-nearest >> neighbor(

Re: [R-pkg-devel] Running tests on 32-bit and 64-bit

2015-08-17 Thread Kasper Daniel Hansen
Perhaps related: in the Bioconductor minfi package I do some checking on somewhat large matrices (450,000 times n). To save space, I compute a hash of the correct result using the digest package. As you, I ran into obvious issues with precision across platforms. To solve this, I take the matrix

Re: [R-pkg-devel] Running tests on 32-bit and 64-bit

2015-08-17 Thread Duncan Murdoch
On 17/08/2015 5:03 AM, Thierry Onkelinx wrote: > Dear all, > > Is there an easy way to run the tests of a package on both a 32-bit and > 64-bit version? Ideally it should work when using R CMD check --as-cran on > all OS's. Although I expect that multi architecture versions are only > available on

Re: [R-pkg-devel] Running tests on 32-bit and 64-bit

2015-08-17 Thread Uwe Ligges
Use winbuilder, it runs 32-bit and 64-bit R tests on a Windows 64-bit platform. Not sure how you implemented the different precisions, but just go ahead and try on winbiulder. Best, Uwe Ligges On 17.08.2015 11:03, Thierry Onkelinx wrote: Dear all, Is there an easy way to run the tests of a

[R-pkg-devel] Running tests on 32-bit and 64-bit

2015-08-17 Thread Thierry Onkelinx
Dear all, Is there an easy way to run the tests of a package on both a 32-bit and 64-bit version? Ideally it should work when using R CMD check --as-cran on all OS's. Although I expect that multi architecture versions are only available on windows. So a Windows only solution will be fine as well.