File tree Expand file tree Collapse file tree 5 files changed +11
-20
lines changed
Expand file tree Collapse file tree 5 files changed +11
-20
lines changed Original file line number Diff line number Diff line change 22
33 * inst/tinytest/test_client_package.R: Finer-grained skip messages
44 * inst/tinytest/test_module_client_package.R: Idem
5+ * inst/tinytest/test_expose_class.R: Idem
6+ * inst/tinytest/test_interface.R: Idem
7+ * inst/tinytest/test_rcpp_package_skeleton.R: Idem
8+ * inst/tinytest/test_reference.R: Idem
59
610 * src/attributes.cpp: Remove dangling '#nocov end'
711
Original file line number Diff line number Diff line change 1616# # You should have received a copy of the GNU General Public License
1717# # along with Rcpp. If not, see <http://www.gnu.org/licenses/>.
1818
19- .runThisTest <- Sys.getenv(" RunAllRcppTests" ) == " yes"
19+ .runThisTest <- Sys.getenv(" RunAllRcppTests" ) == " yes" && Sys.getenv( " RunVerboseRcppTests " ) == " yes "
2020
21- # # override -- skipping test for now
22- .runThisTest <- FALSE
23-
24- if (! .runThisTest ) exit_file(" Skipping 'test_expose_class.R'" )
21+ if (! .runThisTest ) exit_file(" Set 'RunVerboseRcppTests' and 'RunAllRcppTests' to 'yes' to run." )
2522
2623library(Rcpp )
2724
Original file line number Diff line number Diff line change 1616# # You should have received a copy of the GNU General Public License
1717# # along with Rcpp. If not, see <http://www.gnu.org/licenses/>.
1818
19- .runThisTest <- Sys.getenv(" RunAllRcppTests" ) == " yes"
19+ .runThisTest <- Sys.getenv(" RunAllRcppTests" ) == " yes" && Sys.getenv( " RunVerboseRcppTests " ) == " yes "
2020
21- # # override -- skipping test for now as noisy
22- .runThisTest <- FALSE
23-
24- if (! .runThisTest ) exit_file(" Skipping 'test_interface.R'" )
21+ if (! .runThisTest ) exit_file(" Set 'RunVerboseRcppTests' and 'RunAllRcppTests' to 'yes' to run." )
2522
2623library(Rcpp )
2724
Original file line number Diff line number Diff line change 1616# # You should have received a copy of the GNU General Public License
1717# # along with Rcpp. If not, see <http://www.gnu.org/licenses/>.
1818
19- .runThisTest <- Sys.getenv(" RunAllRcppTests" ) == " yes"
19+ .runThisTest <- Sys.getenv(" RunAllRcppTests" ) == " yes" && Sys.getenv( " RunVerboseRcppTests " ) == " yes "
2020
21- # # override -- skipping test for now (need to rebuild binary)
22- .runThisTest <- FALSE
23-
24- if (! .runThisTest ) exit_file(" Skipping 'test_rcpp_package_skeleton'" ) # , set 'RunAllRcppTests=yes' to run.")
21+ if (! .runThisTest ) exit_file(" Set 'RunVerboseRcppTests' and 'RunAllRcppTests' to 'yes' to run." )
2522
2623library(Rcpp )
2724
Original file line number Diff line number Diff line change 1717# # along with Rcpp. If not, see <http://www.gnu.org/licenses/>.
1818
1919.runThisTest <- Sys.getenv(" RunAllRcppTests" ) == " yes"
20-
21- # # override -- skipping test for now (need to rebuild binary)
22- .runThisTest <- FALSE
23-
24- if (! .runThisTest ) exit_file(" Skipping 'test_reference.R'" ) # , set 'RunAllRcppTests=yes' to run.")
20+ if (! .runThisTest ) exit_file(" Set 'RunAllRcppTests' to 'yes' to run." )
2521
2622library(Rcpp )
2723sourceCpp(" cpp/Reference.cpp" )
You can’t perform that action at this time.
0 commit comments