Increased timeout

soft-float
Erin 2023-07-26 02:31:06 +02:00
parent c4e062e742
commit cfe3203ef1
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ use {
};
fuzz_target!(|data: &[u8]| {
if let Ok(mut vm) = Vm::<_, 4096>::new_validated(data, TestTrapHandler, Default::default()) {
if let Ok(mut vm) = Vm::<_, 65536>::new_validated(data, TestTrapHandler, Default::default()) {
let _ = vm.run();
}
});