You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2019/03/28 01:49:22 UTC

[arrow] branch master updated: ARROW-5046: [Release][C++] Exclude fragile Plasma test from verification script

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

kou 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 cebfc79  ARROW-5046: [Release][C++] Exclude fragile Plasma test from verification script
cebfc79 is described below

commit cebfc79262d58498faa9ffedc194c3434e1744a5
Author: Kouhei Sutou <ko...@clear-code.com>
AuthorDate: Thu Mar 28 10:49:08 2019 +0900

    ARROW-5046: [Release][C++] Exclude fragile Plasma test from verification script
    
    We should fix this in 0.14.0.
    https://issues.apache.org/jira/browse/ARROW-5036
    
    Author: Kouhei Sutou <ko...@clear-code.com>
    
    Closes #4061 from kou/release-exclude-fragile-plasma-test and squashes the following commits:
    
    5ce01fb1 <Kouhei Sutou>  Exclude fragile Plasma test from verification script
---
 dev/release/verify-release-candidate.sh | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/dev/release/verify-release-candidate.sh b/dev/release/verify-release-candidate.sh
index faa2528..ea2f9a5 100755
--- a/dev/release/verify-release-candidate.sh
+++ b/dev/release/verify-release-candidate.sh
@@ -224,7 +224,12 @@ ${ARROW_CMAKE_OPTIONS}
   git clone https://github.com/apache/parquet-testing.git
   export PARQUET_TEST_DATA=$PWD/parquet-testing/data
 
-  ctest -j$NPROC --output-on-failure -L unittest
+  # TODO: ARROW-5036
+  ctest \
+    --exclude-regex "plasma-serialization_tests" \
+    -j$NPROC \
+    --output-on-failure \
+    -L unittest
   popd
 }