You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by fs...@apache.org on 2020/01/15 13:53:43 UTC

[arrow] branch master updated (1286f7a -> ccdc4b0)

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

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


    from 1286f7a  ARROW-7582: [Rust][Flight] Unable to compile arrow.flight.protocol.rs
     add ccdc4b0  ARROW-7576: [C++][Dev] Improve fuzzing setup

No new revisions were added by this update.

Summary of changes:
 ci/scripts/cpp_build.sh                            |   2 +-
 cpp/CMakeLists.txt                                 |   5 +-
 .../build-support/fuzzing/generate_corpuses.sh     |  28 ++---
 cpp/build-support/fuzzing/pack_corpus.py           |  54 +++++++++
 cpp/cmake_modules/BuildUtils.cmake                 |  12 +-
 cpp/cmake_modules/ThirdpartyToolchain.cmake        |   5 +-
 cpp/src/arrow/CMakeLists.txt                       |   5 +-
 cpp/src/arrow/ipc/CMakeLists.txt                   |  10 +-
 cpp/src/arrow/{json/chunker.h => ipc/file_fuzz.cc} |  21 ++--
 cpp/src/arrow/ipc/fuzzing_test.cc                  |  44 --------
 cpp/src/arrow/ipc/generate_fuzz_corpus.cc          | 125 +++++++++++++++++++++
 cpp/src/arrow/ipc/reader.cc                        |  42 +++++++
 cpp/src/arrow/ipc/reader.h                         |   6 +
 .../arrow/{json/chunker.h => ipc/stream_fuzz.cc}   |  21 ++--
 14 files changed, 288 insertions(+), 92 deletions(-)
 copy ci/scripts/js_build.sh => cpp/build-support/fuzzing/generate_corpuses.sh (59%)
 create mode 100755 cpp/build-support/fuzzing/pack_corpus.py
 copy cpp/src/arrow/{json/chunker.h => ipc/file_fuzz.cc} (76%)
 delete mode 100644 cpp/src/arrow/ipc/fuzzing_test.cc
 create mode 100644 cpp/src/arrow/ipc/generate_fuzz_corpus.cc
 copy cpp/src/arrow/{json/chunker.h => ipc/stream_fuzz.cc} (76%)