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 2
2
3
3
* inst/tinytest/test_client_package.R: Finer-grained skip messages
4
4
* 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
5
9
6
10
* src/attributes.cpp: Remove dangling '#nocov end'
7
11
Original file line number Diff line number Diff line change 16
16
# # You should have received a copy of the GNU General Public License
17
17
# # along with Rcpp. If not, see <http://www.gnu.org/licenses/>.
18
18
19
- .runThisTest <- Sys.getenv(" RunAllRcppTests" ) == " yes"
19
+ .runThisTest <- Sys.getenv(" RunAllRcppTests" ) == " yes" && Sys.getenv( " RunVerboseRcppTests " ) == " yes "
20
20
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." )
25
22
26
23
library(Rcpp )
27
24
Original file line number Diff line number Diff line change 16
16
# # You should have received a copy of the GNU General Public License
17
17
# # along with Rcpp. If not, see <http://www.gnu.org/licenses/>.
18
18
19
- .runThisTest <- Sys.getenv(" RunAllRcppTests" ) == " yes"
19
+ .runThisTest <- Sys.getenv(" RunAllRcppTests" ) == " yes" && Sys.getenv( " RunVerboseRcppTests " ) == " yes "
20
20
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." )
25
22
26
23
library(Rcpp )
27
24
Original file line number Diff line number Diff line change 16
16
# # You should have received a copy of the GNU General Public License
17
17
# # along with Rcpp. If not, see <http://www.gnu.org/licenses/>.
18
18
19
- .runThisTest <- Sys.getenv(" RunAllRcppTests" ) == " yes"
19
+ .runThisTest <- Sys.getenv(" RunAllRcppTests" ) == " yes" && Sys.getenv( " RunVerboseRcppTests " ) == " yes "
20
20
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." )
25
22
26
23
library(Rcpp )
27
24
Original file line number Diff line number Diff line change 17
17
# # along with Rcpp. If not, see <http://www.gnu.org/licenses/>.
18
18
19
19
.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." )
25
21
26
22
library(Rcpp )
27
23
sourceCpp(" cpp/Reference.cpp" )
You can’t perform that action at this time.
0 commit comments