You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by jo...@apache.org on 2022/04/27 20:15:08 UTC

[arrow] branch master updated: ARROW-16374: [R] [C++] skip another snappy test during sanitizer runs

This is an automated email from the ASF dual-hosted git repository.

jonkeane pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new f03f090d0c ARROW-16374: [R] [C++] skip another snappy test during sanitizer runs
f03f090d0c is described below

commit f03f090d0c9fd6c85e046e2790c5d443729f6b30
Author: Jonathan Keane <jk...@gmail.com>
AuthorDate: Wed Apr 27 15:14:58 2022 -0500

    ARROW-16374: [R] [C++] skip another snappy test during sanitizer runs
    
    Another example of https://github.com/google/snappy/pull/148
    
    Closes #13014 from jonkeane/ARROW-16374
    
    Authored-by: Jonathan Keane <jk...@gmail.com>
    Signed-off-by: Jonathan Keane <jk...@gmail.com>
---
 r/tests/testthat/test-parquet.R | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/r/tests/testthat/test-parquet.R b/r/tests/testthat/test-parquet.R
index dbafd5d62c..1737b7100c 100644
--- a/r/tests/testthat/test-parquet.R
+++ b/r/tests/testthat/test-parquet.R
@@ -197,6 +197,8 @@ test_that("Maps are preserved when writing/reading from Parquet", {
 })
 
 test_that("read_parquet() and write_parquet() accept connection objects", {
+  skip_if_not_available("snappy")
+
   tf <- tempfile()
   on.exit(unlink(tf))