mirror of
https://github.com/gfx-rs/wgpu.git
synced 2026-04-22 03:02:01 -04:00
* Misc Repo Cleanup Tasks * Dependency Trimming * Dep cleanup * Restrict libfuzzer * Flip cfg * mod fuzz
13 lines
413 B
Rust
13 lines
413 B
Rust
#![no_main]
|
|
#[cfg(not(any(target_arch = "wasm32", target_os = "ios")))]
|
|
mod fuzz {
|
|
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();
|
|
});
|
|
}
|