[Rcpp-commits] r2252 - in pkg/Rcpp/inst/unitTests: . testRcppModule/src
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Thu Sep 30 11:25:35 CEST 2010
Author: romain
Date: 2010-09-30 11:25:34 +0200 (Thu, 30 Sep 2010)
New Revision: 2252
Modified:
pkg/Rcpp/inst/unitTests/runit.sugar.R
pkg/Rcpp/inst/unitTests/testRcppModule/src/rcpp_module.cpp
Log:
advantures in windowsland, skip ifelse test
Modified: pkg/Rcpp/inst/unitTests/runit.sugar.R
===================================================================
--- pkg/Rcpp/inst/unitTests/runit.sugar.R 2010-09-30 09:15:35 UTC (rev 2251)
+++ pkg/Rcpp/inst/unitTests/runit.sugar.R 2010-09-30 09:25:34 UTC (rev 2252)
@@ -895,17 +895,17 @@
}
-test.sugar.ifelse <- function( ){
- fx <- .rcpp.sugar$runit_ifelse
- x <- 1:10
- y <- 10:1
- checkEquals( fx( x, y), list(
- "vec_vec" = ifelse( x<y, x*x, -(y*y) ) ,
- "vec_prim" = ifelse( x<y, 1.0, -(y*y) ),
- "prim_vec" = ifelse( x<y, x*x, 1.0 ),
- "prim_prim" = ifelse( x<y, 1.0, 2.0 )
- ) )
-}
+# test.sugar.ifelse <- function( ){
+# fx <- .rcpp.sugar$runit_ifelse
+# x <- 1:10
+# y <- 10:1
+# checkEquals( fx( x, y), list(
+# "vec_vec" = ifelse( x<y, x*x, -(y*y) ) ,
+# "vec_prim" = ifelse( x<y, 1.0, -(y*y) ),
+# "prim_vec" = ifelse( x<y, x*x, 1.0 ),
+# "prim_prim" = ifelse( x<y, 1.0, 2.0 )
+# ) )
+# }
test.sugar.isna <- function( ){
Modified: pkg/Rcpp/inst/unitTests/testRcppModule/src/rcpp_module.cpp
===================================================================
--- pkg/Rcpp/inst/unitTests/testRcppModule/src/rcpp_module.cpp 2010-09-30 09:15:35 UTC (rev 2251)
+++ pkg/Rcpp/inst/unitTests/testRcppModule/src/rcpp_module.cpp 2010-09-30 09:25:34 UTC (rev 2252)
@@ -40,7 +40,7 @@
RCPP_MODULE(yada){
using namespace Rcpp ;
- function( "hello" , &hello ) ;
+ // function( "hello" , &hello ) ;
function( "bar" , &bar ) ;
function( "foo" , &foo ) ;
function( "bla" , &bla ) ;
More information about the Rcpp-commits
mailing list