Peter Dalgaard BSA wrote:
Marc Schwartz <mschwartz at medanalytics.com> writes: SNIP This morning (my time) I downloaded: R-1.7.0beta_latest.tar.gz 02-Apr-2003 07:04 8.8M from CRAN U.S and received the following errors during make check: ... running code in 'arith-true.R' ... OK comparing 'arith-true.Rout' to './arith-true.Rout.save' ...71c71 <
[1]
FALSE ---
[1] TRUE
73c73 < [1] FALSE ---
[1] TRUE
make[3]: *** [arith-true.Rout] Error 1 ... I have not yet seen other posts on this, so I am unsure if this is unique to RH 9 or not. No other errors were found. If you need more information or need me to run other code, let me know.
Ick! Not good. Could you try figuring out which lines differ? diff -u $builddir/tests/arith-true.Rout.fail $srcdir/tests/arith-true.Rout.save should do the trick. The line numbers from Rdiff are generated after removing some lines, so figuring out which are lines 71 and 73 is tricky, and I suspect they aren't the same as on my machine(?!).
Peter,
The following is the output of:
$ diff -u arith-true.Rout.fail arith-true.Rout.save
--- arith-true.Rout.fail 2003-04-02 10:48:10.000000000 -0600
+++ arith-true.Rout.save 2002-08-05 11:51:42.000000000 -0500
@@ -1,6 +1,6 @@
-R : Copyright 2003, The R Development Core Team
-Version 1.7.0 Under development (unstable) (2003-04-02)
+R : Copyright 2002, The R Development Core Team
+Version 1.6.0 Under development (unstable) (2002-08-05)
R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
@@ -81,9 +81,9 @@
>
> ## These are "double"s:
> all(!is.nan(c(1.,NA)))
-[1] FALSE
+[1] TRUE
> all(c(FALSE,TRUE,FALSE) == is.nan(c (1.,NaN,NA)))
-[1] FALSE
+[1] TRUE
> all(c(FALSE,TRUE,FALSE) == is.nan(list(1.,NaN,NA)))
[1] TRUE
>
@@ -289,5 +289,5 @@
>
> ## Last Line:
> cat('Time elapsed: ', proc.time() - .proctime00,'\n')
-Time elapsed: 2.5 0.06 3.16 0 0
+Time elapsed: 2.07 0.1 2.22 0 0
>
I see that there is a new update this morning, so if you would like me
to download and use that new version, let me know.
Best,
Marc Schwartz