[Rcpp-commits] r3392 - in pkg/RcppArmadillo: . inst inst/unitTests
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Sat Nov 19 13:53:44 CET 2011
Author: edd
Date: 2011-11-19 13:53:44 +0100 (Sat, 19 Nov 2011)
New Revision: 3392
Modified:
pkg/RcppArmadillo/ChangeLog
pkg/RcppArmadillo/inst/NEWS
pkg/RcppArmadillo/inst/unitTests/runit.RcppArmadillo.R
Log:
roll up 0.2.30 again
commented-out the test which does not pass in Vienna and cannot be made to fail anywhere else
Modified: pkg/RcppArmadillo/ChangeLog
===================================================================
--- pkg/RcppArmadillo/ChangeLog 2011-11-19 09:49:52 UTC (rev 3391)
+++ pkg/RcppArmadillo/ChangeLog 2011-11-19 12:53:44 UTC (rev 3392)
@@ -1,7 +1,9 @@
-2011-11-17 Romain Francois <romain at r-enthusiasts.com>
+2011-11-19 Dirk Eddelbuettel <edd at debian.org>
* DESCRIPTION: Release 0.2.30
+2011-11-17 Romain Francois <romain at r-enthusiasts.com>
+
* inst/include/RcppArmadilloSugar.h: reworked forwarding sugar
expressions to arma expressions. No need for the "forward" function
anymore. For now, we kept forward as a templated identity function
Modified: pkg/RcppArmadillo/inst/NEWS
===================================================================
--- pkg/RcppArmadillo/inst/NEWS 2011-11-19 09:49:52 UTC (rev 3391)
+++ pkg/RcppArmadillo/inst/NEWS 2011-11-19 12:53:44 UTC (rev 3392)
@@ -1,4 +1,4 @@
-0.2.30 2011-11-17
+0.2.30 2011-11-19
o Upgraded to Armadillo test release 2.3.91 "Loco Lounge Lizard (Beta 1)"
Modified: pkg/RcppArmadillo/inst/unitTests/runit.RcppArmadillo.R
===================================================================
--- pkg/RcppArmadillo/inst/unitTests/runit.RcppArmadillo.R 2011-11-19 09:49:52 UTC (rev 3391)
+++ pkg/RcppArmadillo/inst/unitTests/runit.RcppArmadillo.R 2011-11-19 12:53:44 UTC (rev 3392)
@@ -329,19 +329,19 @@
}
-test.armadillo.rtti.check <- function() {
+## test.armadillo.rtti.check <- function() {
- inc <- '
- void blah(arma::mat& X) {
- X.set_size(5,5);
- }
- '
- src <- '
- arma::vec V;
- blah(V); // if blah() worked, we have a problem
- '
- fun <- cxxfunction(signature(), body=src, inc=inc, plugin = "RcppArmadillo")
+## inc <- '
+## void blah(arma::mat& X) {
+## X.set_size(5,5);
+## }
+## '
+## src <- '
+## arma::vec V;
+## blah(V); // if blah() worked, we have a problem
+## '
+## fun <- cxxfunction(signature(), body=src, inc=inc, plugin = "RcppArmadillo")
- checkException(fun(), msg="RTTI check on matrix constructor exception")
+## checkException(fun(), msg="RTTI check on matrix constructor exception")
-}
+## }
More information about the Rcpp-commits
mailing list