summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/flash_physical.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/test/flash_physical.c b/test/flash_physical.c
index e5430f4bd0..06dd495254 100644
--- a/test/flash_physical.c
+++ b/test/flash_physical.c
@@ -3,7 +3,7 @@
* found in the LICENSE file.
*/
-#include "chip/stm32/flash-f.h"
+#include "chip/stm32/flash-regs.h"
#include "flash.h"
#include "panic.h"
#include "test_util.h"
@@ -123,15 +123,10 @@ void run_test(int argc, char **argv)
{
ccprintf("Running flash physical test\n");
RUN_TEST(test_flash_config);
- /*
- * TODO(b/157692395): These should be implemented for the STM32H743 as
- * well.
- */
-#if defined(CHIP_VARIANT_STM32F412)
+
RUN_TEST(test_lock_option_bytes);
RUN_TEST(test_disable_option_bytes);
RUN_TEST(test_lock_flash_control_register);
RUN_TEST(test_disable_flash_control_register);
-#endif
test_print_result();
}