blob: ecd587306247f547f9b0f7adc04f4e7d40e6cbd8 [file] [log] [blame]
// Copyright 2019 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#![cfg(not(test))]
#![no_main]
use crosvm_fuzz::fuzz_target;
use usb_util::parse_usbfs_descriptors;
fuzz_target!(|data| {
let _ = parse_usbfs_descriptors(data);
});