]> git.sur5r.net Git - u-boot/blobdiff - include/efi_selftest.h
efi_selftest: do not execute test if setup failed
[u-boot] / include / efi_selftest.h
index 08dd8e43ad1c1ec4f829257f68914cef2c294df5..c23bc24bed0f5d0935c84bc26c199598606e52d8 100644 (file)
@@ -114,6 +114,7 @@ u16 efi_st_get_key(void);
  * @setup:     set up the unit test
  * @teardown:  tear down the unit test
  * @execute:   execute the unit test
+ * @setup_ok:  setup was successful (set at runtime)
  * @on_request:        test is only executed on request
  */
 struct efi_unit_test {
@@ -123,6 +124,7 @@ struct efi_unit_test {
                     const struct efi_system_table *systable);
        int (*execute)(void);
        int (*teardown)(void);
+       int setup_ok;
        bool on_request;
 };