This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository libcxx.
from 8a29c9d39 Add C++17 explicit deduction guides to std::pair. new 29ae2ba65 Initial cut at infastructure for fuzzing support for OSS-fuzz
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: fuzzing/fuzzing.cpp | 222 +++++++++++++++++++++++++++++++ fuzzing/fuzzing.h | 33 +++++ test/libcxx/fuzzing/nth_element.cpp | 38 ++++++ test/libcxx/fuzzing/partial_sort.cpp | 38 ++++++ test/libcxx/fuzzing/partition.cpp | 38 ++++++ test/libcxx/fuzzing/sort.cpp | 38 ++++++ test/libcxx/fuzzing/stable_partition.cpp | 38 ++++++ test/libcxx/fuzzing/stable_sort.cpp | 38 ++++++ 8 files changed, 483 insertions(+) create mode 100644 fuzzing/fuzzing.cpp create mode 100644 fuzzing/fuzzing.h create mode 100644 test/libcxx/fuzzing/nth_element.cpp create mode 100644 test/libcxx/fuzzing/partial_sort.cpp create mode 100644 test/libcxx/fuzzing/partition.cpp create mode 100644 test/libcxx/fuzzing/sort.cpp create mode 100644 test/libcxx/fuzzing/stable_partition.cpp create mode 100644 test/libcxx/fuzzing/stable_sort.cpp