File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed
Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 11Package: Rcpp
22Title: Seamless R and C++ Integration
3- Version: 0.10.6
4- Date: $Date$
3+ Version: 0.10.6.1
4+ Date: 2013-11-13
55Author: Dirk Eddelbuettel and Romain Francois, with contributions
66 by Douglas Bates, John Chambers and JJ Allaire
77Maintainer: Dirk Eddelbuettel <edd@debian.org>
Original file line number Diff line number Diff line change @@ -30,8 +30,10 @@ library(RUnit)
3030<<unitTesting ,echo =FALSE ,print =FALSE >>=
3131pkg <- " Rcpp"
3232
33- # # Make sure we run all tests for the vignette
34- Sys.setenv(" RunAllRcppTests" = " yes" )
33+ # # Check the environemnt variable to see if all tests should be run
34+ if (Sys.getenv(" RunAllRcppTests" ) != " yes" ) {
35+ writeLines(" The environment variable 'RunAllRcppTests' was not set to 'yes', so skipping some tests." )
36+ }
3537
3638if (file.exists(" unitTests-results" )) unlink(" unitTests-results" , recursive = TRUE )
3739dir.create(" unitTests-results" )
@@ -61,7 +63,7 @@ results <- "unitTests-results/Rcpp-unitTests.txt"
6163if (file.exists(results)) {
6264 writeLines(readLines(results))
6365} else{
64- writeLines( "unit test results not available" )
66+ writeLines("Unit test results not available")
6567}
6668@
6769
You can’t perform that action at this time.
0 commit comments