Skip to content

Commit

Permalink
suspend new embedded test which fails on Linux and macOS
Browse files Browse the repository at this point in the history
more ChangeLog entries too
  • Loading branch information
eddelbuettel committed Jun 9, 2018
1 parent f69caf5 commit 5d5cdb8
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
21 changes: 21 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2018-06-09 Dirk Eddelbuettel <edd@debian.org>

* inst/unitTests/runit.embeddedR.R: Suspend test for now

2018-06-08 Dirk Eddelbuettel <edd@debian.org>

* DESCRIPTION (Version, Date): Roll minor version
Expand Down Expand Up @@ -42,6 +46,10 @@
tests check in particular that the C++ stack is properly unwound when a
long jump occurs.

2018-06-01 Romain Francois <romain@purrple.cat>

* inst/include/Rcpp/Environment.h: Make Environment::new_child() const

2018-05-31 Lionel Henry <lionel@rstudio.com>

* inst/include/Rcpp/api/meat/Rcpp_eval.h: Fix protected evaluation.
Expand Down Expand Up @@ -89,6 +97,19 @@

* src/attributes.cpp: Detect longjump sentinels and resume jump.

2018-05-27 Romain Francois <romain@purrple.cat>

* inst/include/Rcpp/vector/string_proxy.h: Make
StringProxy::operator== const
* inst/unitTests/cpp/Vector.cpp: New test
* inst/unitTests/runit.Vector.R: Idem

2018-05-09 Filip Schouwenaars <filip@datacamp.com>

* R/Attributes.R: Set local environment in source()
* inst/unitTests/cpp/embeddedR.cpp: New test
* inst/unitTests/runit.embeddedR.R: Idem

2018-05-09 Dirk Eddelbuettel <edd@debian.org>

* DESCRIPTION: Release 0.12.17
Expand Down
4 changes: 2 additions & 2 deletions inst/NEWS.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
\item The \code{Environment::new_child()} is now \code{const}
(Romain in \ghpr{858} fixing \ghit{854}).
\item Next \code{eval} codes now properly unwind (Lionel in the large
and careful \ghpr{859}).
and careful \ghpr{859} fixing \ghit{807}).
\item In debugging mode, more type information is shown on
\code{abort()} (Jack Waseyin \ghpr{860}).
\code{abort()} (Jack Waseyin \ghpr{860} fixing \ghit{857}).
\item A new class was added which allow suspension of the RNG
synchronisation to address an issue seen in \CRANpkg{RcppDE}
(Kevin in \ghpr{862}).
Expand Down
2 changes: 1 addition & 1 deletion inst/unitTests/runit.embeddedR.R
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# You should have received a copy of the GNU General Public License
# along with Rcpp. If not, see <http://www.gnu.org/licenses/>.

.runThisTest <- Sys.getenv("RunAllRcppTests") == "yes"
.runThisTest <- FALSE #Sys.getenv("RunAllRcppTests") == "yes"

if (.runThisTest) {

Expand Down

0 comments on commit 5d5cdb8

Please sign in to comment.