File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 1
1
2019-12-07 Dirk Eddelbuettel <
[email protected] >
2
2
3
+ * inst/tinytest/test_binary_package.R: Finer-grained skip messages
4
+
3
5
* inst/tinytest/test_misc.R: Add commented-out test that fails
4
6
* tests/tinytest.R: Minor edit
5
7
Original file line number Diff line number Diff line change 20
20
21
21
.onTravis <- Sys.getenv(" TRAVIS" ) != " "
22
22
23
- .runThisTest <- Sys.getenv(" RunAllRcppTests" ) == " yes"
24
-
25
- # # override -- skipping test for now (need to rebuild binary)
26
- .runThisTest <- FALSE
27
-
23
+ .runThisTest <- Sys.getenv(" RunAllRcppTests" ) == " yes" && Sys.getenv(" RunVerboseRcppTests" ) == " yes"
28
24
29
25
# #test.binary.testRcppPackage <- function() {
30
26
31
- if (! (.runThisTest && .onLinux && ! .onTravis )) exit_file(" Skipping 'test_binary_package.R'" )
27
+ if (! .runThisTest ) exit_file(" Set 'RunVerboseRcppTests' and 'RunAllRcppTests' to 'yes' to run." )
28
+ if (! .onLinux ) exit_file(" Only running this on Linux.'" )
29
+ if (.onTravis ) exit_file(" Not running on Travis." )
30
+
31
+ exit_file(" Skipping for now as underlying binary needs to be updated." )
32
32
33
33
debpkg <- " r-cran-testrcpppackage"
34
34
rpkg <- " testRcppPackage"
You can’t perform that action at this time.
0 commit comments