mirror of
https://github.com/gfx-rs/wgpu.git
synced 2026-04-22 03:02:01 -04:00
10 lines
312 B
Rust
10 lines
312 B
Rust
#![no_main]
|
|
use libfuzzer_sys::fuzz_target;
|
|
use naga::front::spv::{Frontend, Options};
|
|
|
|
fuzz_target!(|data: Vec<u32>| {
|
|
// Ensure the parser can handle potentially malformed data without crashing.
|
|
let options = Options::default();
|
|
let _result = Frontend::new(data.into_iter(), &options).parse();
|
|
});
|