File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1+ 2023-01-29 Iñaki Ucar <iucar@fedoraproject.org>
2+
3+ * inst/tinytest/test_xptr.R: Fix a couple of tests writing to stdout
4+
152023-01-24 Dirk Eddelbuettel <edd@debian.org>
26
37 * DESCRIPTION (Version, Date): Roll minor version
Original file line number Diff line number Diff line change @@ -60,9 +60,9 @@ void test() {
6060'
6161
6262writeLines(code , file_path )
63- expect_silent (system(cmd ), info = " check that finalizer is NOT called on exit " )
63+ expect_equal (system(cmd , intern = TRUE ), character ( 0 ) )
6464
6565if (packageVersion(" tinytest" ) < " 1.2.0" ) exit_file(" Skip remainder on older test platform" )
6666
6767writeLines(c(" #define RCPP_USE_FINALIZE_ON_EXIT" , code ), file_path )
68- expect_stdout (system(cmd ), info = " check that finalizer is called on exit " )
68+ expect_equal (system(cmd , intern = TRUE ), " custom_finalizer was called" )
You can’t perform that action at this time.
0 commit comments