Skip to content

Commit

Permalink
MFG Locked accessibility varies with version (#1614)
Browse files Browse the repository at this point in the history
  • Loading branch information
jlmahowa-amd authored Jul 15, 2024
1 parent 57f84de commit 66b1741
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/tests/fips_test_suite/jtag_locked.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,11 @@ fn jtag_locked() {
&rom,
true,
DeviceLifecycle::Manufacturing,
Err(OpenOcdError::VeerNotAccessible),
if cfg!(feature = "hw-1.0") {
Ok(())
} else {
Err(OpenOcdError::VeerNotAccessible)
},
);
check_jtag_accessible(
&rom,
Expand Down

0 comments on commit 66b1741

Please sign in to comment.