Skip to content

Commit de836e9

Browse files
authored
Merge pull request #418 from mrc-ide/fix-quote-libs
Quote include path to cope with spaces
2 parents 3369661 + cad53a2 commit de836e9

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

DESCRIPTION

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: dust
22
Title: Iterate Multiple Realisations of Stochastic Models
3-
Version: 0.15.1
3+
Version: 0.15.2
44
Authors@R: c(person("Rich", "FitzJohn", role = c("aut", "cre"),
55
email = "[email protected]"),
66
person("Alex", "Hill", role = "aut"),
@@ -37,6 +37,7 @@ Suggests:
3737
bench,
3838
brio,
3939
callr,
40+
curl,
4041
dde,
4142
decor,
4243
fs,

inst/template/Makevars

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# -*- makefile -*-
2-
PKG_CXXFLAGS=-I{{path_dust_include}} -DHAVE_INLINE $(SHLIB_OPENMP_CXXFLAGS) {{compiler_options}}
2+
PKG_CXXFLAGS=-I"{{path_dust_include}}" -DHAVE_INLINE $(SHLIB_OPENMP_CXXFLAGS) {{compiler_options}}
33
PKG_LIBS=$(SHLIB_OPENMP_CXXFLAGS)

tests/testthat/test-rng.R

+1
Original file line numberDiff line numberDiff line change
@@ -505,6 +505,7 @@ test_that("negative seed values result in sensible state", {
505505
expect_false(all(s0 == as.raw(0)))
506506
expect_false(all(s1 == as.raw(0)))
507507
expect_false(all(s10 == as.raw(0)))
508+
skip_on_os("mac") # mrc-5288 - see mcstate2 for more on this
508509
expect_false(identical(s0, s1))
509510
expect_false(identical(s0, s10))
510511
expect_false(identical(s1, s10))

0 commit comments

Comments
 (0)