Skip to content

Commit cf0f491

Browse files
committed
Merge branch 'master' of github.com:RcppCore/RcppParallel
2 parents 7753979 + c72e0cd commit cf0f491

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

.Rbuildignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
^.*\.Rproj$
22
^\.Rproj\.user$
33
^src/tbb/build/lib_.*$
4+
^tests/testthat/pkg/RcppParallelTest/src/.*\.s?o$
5+
^tests/testthat/pkg/RcppParallelTest/src/.*\.dll$
46
^inst/lib$
57
^.travis.yml
8+
^README.md
69
^doc$
710

811

NEWS

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
RcppParallel 4.3.7
22
------------------------------------------------------------------------
33

4-
* Fix failure to compile with Rtools 3.3
5-
* Fix failure to compile on OS X Snow Leopard R toolchain
64
* Add tbbmalloc library
5+
* Fix failure to compile on OS X Snow Leopard R toolchain
76

87
RcppParallel 4.3.6
98
------------------------------------------------------------------------

tests/testthat/test-malloc.R

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
context( "malloc" )
22

33
test_that( "tbbmalloc works", {
4+
5+
skip_on_cran()
6+
47
sourceCpp( "cpp/malloc.cpp" )
58
})
69

tests/testthat/test-pkg.R

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ context( "package" )
22

33
test_that( "linking from a package works", {
44

5+
skip_on_cran()
6+
57
templib <- tempfile()
68
dir.create(templib)
79

0 commit comments

Comments
 (0)