[PATCH 2/2] uefirtmisc: add stress test for UEFI runtime GetNextHighMonotonicCount interface

Keng-Yu Lin kengyu at canonical.com
Tue Jan 15 05:14:53 UTC 2013


On Mon, Jan 14, 2013 at 11:40 AM, Ivan Hu <ivan.hu at canonical.com> wrote:
> Signed-off-by: Ivan Hu <ivan.hu at canonical.com>
> ---
>  src/uefi/uefirtmisc/uefirtmisc.c |   16 ++++++++++++++++
>  1 file changed, 16 insertions(+)
>
> diff --git a/src/uefi/uefirtmisc/uefirtmisc.c b/src/uefi/uefirtmisc/uefirtmisc.c
> index 7a65e74..c8aff3d 100644
> --- a/src/uefi/uefirtmisc/uefirtmisc.c
> +++ b/src/uefi/uefirtmisc/uefirtmisc.c
> @@ -100,8 +100,24 @@ static int uefirtmisc_test1(fwts_framework *fw)
>         return FWTS_OK;
>  }
>
> +static int uefirtmisc_test2(fwts_framework *fw)
> +{
> +       int ret;
> +       uint32_t multitesttime = 1024;
> +
> +       fwts_log_info(fw, "Stress testing for UEFI runtime service GetNextHighMonotonicCount interface.");
> +       ret = getnexthighmonotoniccount_test(fw, multitesttime);
> +       if (ret != FWTS_OK)
> +               return ret;
> +
> +       fwts_passed(fw, "UEFI runtime service GetNextHighMonotonicCount interface stress test passed.");
> +
> +       return FWTS_OK;
> +}
> +
>  static fwts_framework_minor_test uefirtmisc_tests[] = {
>         { uefirtmisc_test1, "Test for UEFI miscellaneous runtime service interfaces." },
> +       { uefirtmisc_test2, "Stress test for UEFI miscellaneous runtime service interfaces." },
>         { NULL, NULL }
>  };
>
> --
> 1.7.10.4
>
Acked-by: Keng-Yu Lin <kengyu at canonical.com>



More information about the fwts-devel mailing list