mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-01 07:35:02 +03:00
a1f9d2420f
Previously, some fuzzers were generating an excessive amount of debug logging. This change explicitly disables debug logging for all fuzzers. This allows higher test throughput and makes the logs easier to read when fuzzing locally.
20 lines
558 B
C++
20 lines
558 B
C++
/*
|
|
* Copyright (c) 2022, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibVideo/Containers/Matroska/Reader.h>
|
|
#include <stddef.h>
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(u8 const* data, size_t size)
|
|
{
|
|
AK::set_debug_enabled(false);
|
|
auto matroska_reader_result = Video::Matroska::Reader::from_data({ data, size });
|
|
if (matroska_reader_result.is_error())
|
|
return 0;
|
|
(void)matroska_reader_result.value().segment_information();
|
|
(void)matroska_reader_result.value().track_count();
|
|
return 0;
|
|
}
|