This is an automated email from the ASF dual-hosted git repository. kszucs pushed a commit to branch maint-9.0.0 in repository https://gitbox.apache.org/repos/asf/arrow.git
commit 5564777f2e163d3b1f9d2d3c81693a94024d796e Author: Jacob Wujciak-Jens <[email protected]> AuthorDate: Wed Jul 27 14:03:19 2022 +0200 ARROW-17206: [R] Skip test to fix snappy sanitizer issue (#13704) https://dev.azure.com/ursacomputing/crossbow/_build/results?buildId=30020&view=logs&j=0da5d1d9-276d-5173-c4c4-9d4d4ed14fdb&t=d9b15392-e4ce-5e4c-0c8c-b69645229181&l=7964 Authored-by: Jacob Wujciak-Jens <[email protected]> Signed-off-by: Krisztián Szűcs <[email protected]> --- r/tests/testthat/test-compute.R | 2 ++ 1 file changed, 2 insertions(+) diff --git a/r/tests/testthat/test-compute.R b/r/tests/testthat/test-compute.R index 946583ae00..9e487169f4 100644 --- a/r/tests/testthat/test-compute.R +++ b/r/tests/testthat/test-compute.R @@ -208,6 +208,8 @@ test_that("register_user_defined_function() errors for unsupported specification test_that("user-defined functions work during multi-threaded execution", { skip_if_not(CanRunWithCapturedR()) skip_if_not_available("dataset") + # Snappy has a UBSan issue: https://github.com/google/snappy/pull/148 + skip_on_linux_devel() n_rows <- 10000 n_partitions <- 10
