add issue-3234 test

this issue is already resolved
This commit is contained in:
rchaser53 2019-02-08 00:05:54 +09:00
parent 4ed31b606d
commit 5e530980b7
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,14 @@
macro_rules! fuzz_target {
(|$data:ident: &[u8]| $body:block) => {};
}
fuzz_target!(|data: &[u8]| {
if let Ok(app_img) = AppImage::parse(data) {
if let Ok(app_img) = app_img.sign_for_secureboot(include_str!("../../test-data/signing-key")) {
assert!(app_img.is_signed());
Gbl::from_app_image(app_img).to_bytes();
}
}
});

View File

@ -0,0 +1,14 @@
macro_rules! fuzz_target {
(|$data:ident: &[u8]| $body:block) => {};
}
fuzz_target!(|data: &[u8]| {
if let Ok(app_img) = AppImage::parse(data) {
if let Ok(app_img) =
app_img.sign_for_secureboot(include_str!("../../test-data/signing-key"))
{
assert!(app_img.is_signed());
Gbl::from_app_image(app_img).to_bytes();
}
}
});