Skip to content

Commit

Permalink
ARROW-5046: [Release][C++] Exclude fragile Plasma test from verificat…
Browse files Browse the repository at this point in the history
…ion script

We should fix this in 0.14.0.
https://issues.apache.org/jira/browse/ARROW-5036

Author: Kouhei Sutou <kou@clear-code.com>

Closes #4061 from kou/release-exclude-fragile-plasma-test and squashes the following commits:

5ce01fb <Kouhei Sutou>  Exclude fragile Plasma test from verification script
  • Loading branch information
kou committed Mar 28, 2019
1 parent d588046 commit cebfc79
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion dev/release/verify-release-candidate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit cebfc79

Please sign in to comment.