diff options
Diffstat (limited to 'libc/fuzzing/math/nextafter_differential_fuzz.cpp')
| -rw-r--r-- | libc/fuzzing/math/nextafter_differential_fuzz.cpp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/libc/fuzzing/math/nextafter_differential_fuzz.cpp b/libc/fuzzing/math/nextafter_differential_fuzz.cpp new file mode 100644 index 000000000000..f4a7891df2aa --- /dev/null +++ b/libc/fuzzing/math/nextafter_differential_fuzz.cpp @@ -0,0 +1,26 @@ +//===-- nextafter_differential_fuzz.cpp +//---------------------------------------===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// +/// +/// Differential fuzz test for llvm-libc nextafter implementation. +/// +//===----------------------------------------------------------------------===// + +#include "fuzzing/math/TwoInputSingleOutputDiff.h" + +#include "src/math/nextafter.h" +#include "src/math/nextafterf.h" +#include "src/math/nextafterl.h" + +extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { + TwoInputSingleOutputDiff<float, float>(&__llvm_libc::nextafterf, + &::nextafterf, data, size); + TwoInputSingleOutputDiff<double, double>(&__llvm_libc::nextafter, + &::nextafter, data, size); + return 0; +} |
