From: Sean Anderson <seanga2@gmail.com>
To: u-boot@lists.denx.de
Subject: [PATCH v2 2/2] test: unit test for longjmp
Date: Mon, 22 Mar 2021 09:23:44 -0400 [thread overview]
Message-ID: <47007446-5ad9-c5b2-dc55-78400f288dc5@gmail.com> (raw)
In-Reply-To: <20210322110249.4387-3-xypron.glpk@gmx.de>
On 3/22/21 7:02 AM, Heinrich Schuchardt wrote:
> Provide a unit test for the longjmp() library function
>
> Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
> ---
> v2:
> no change
> ---
> test/lib/Makefile | 1 +
> test/lib/longjmp.c | 44 ++++++++++++++++++++++++++++++++++++++++++++
> 2 files changed, 45 insertions(+)
> create mode 100644 test/lib/longjmp.c
>
> diff --git a/test/lib/Makefile b/test/lib/Makefile
> index 97c11e35a8..a30f615aa9 100644
> --- a/test/lib/Makefile
> +++ b/test/lib/Makefile
> @@ -7,6 +7,7 @@ obj-$(CONFIG_EFI_LOADER) += efi_device_path.o
> obj-$(CONFIG_EFI_SECURE_BOOT) += efi_image_region.o
> obj-y += hexdump.o
> obj-y += lmb.o
> +obj-y += longjmp.o
> obj-$(CONFIG_CONSOLE_RECORD) += test_print.o
> obj-$(CONFIG_SSCANF) += sscanf.o
> obj-y += string.o
> diff --git a/test/lib/longjmp.c b/test/lib/longjmp.c
> new file mode 100644
> index 0000000000..7571540ffc
> --- /dev/null
> +++ b/test/lib/longjmp.c
> @@ -0,0 +1,44 @@
> +// SPDX-License-Identifier: GPL-2.0+
> +/*
> + * Test setjmp(), longjmp()
> + *
> + * Copyright (c) 2021, Heinrich Schuchardt <xypron.glpk@gmx.de>
> + */
> +
> +#include <common.h>
> +#include <test/lib.h>
> +#include <test/test.h>
> +#include <test/ut.h>
> +#include <asm/setjmp.h>
> +
> +/**
> + * test_longjmp_ret() - get longjmp() return value
> + *
> + * @i: value passed to longjmp()
> + * Return: value returned by longjmp()
> + */
> +int test_longjmp_ret(int i)
> +{
> + jmp_buf env;
> + int ret;
> +
> + ret = setjmp(env);
> + if (ret)
> + return ret;
> + longjmp(env, i);
> + /* We should not arrive here */
> + return 0x1000;
> +}
> +
> +static int lib_test_longjmp(struct unit_test_state *uts)
> +{
> + int i;
> +
> + for (i = -3; i < 0; ++i)
> + ut_asserteq(i, test_longjmp_ret(i));
> + ut_asserteq(1, test_longjmp_ret(0));
> + for (i = 1; i < 4; ++i)
> + ut_asserteq(i, test_longjmp_ret(i));
> + return 0;
> +}
> +LIB_TEST(lib_test_longjmp, 0);
> --
> 2.30.2
>
Reviewed-by: Sean Anderson <seanga2@gmail.com>
Tested-by: Sean Anderson <seanga2@gmail.com>
Though I would like to test that variables are set correctly e.g. by doing
int test_longjmp_ret(int i)
{
jmp_buf env;
int ret;
ret = setjmp(env);
if (ret)
return ret;
ret = 0x1000;
longjmp(env, i);
/* We should not arrive here */
return ret;
}
--Sean
next prev parent reply other threads:[~2021-03-22 13:23 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-22 11:02 [PATCH v2 0/2] riscv: simplify longjmp Heinrich Schuchardt
2021-03-22 11:02 ` [PATCH v2 1/2] " Heinrich Schuchardt
2021-03-22 12:53 ` Sean Anderson
2021-03-23 11:54 ` Leo Liang
2021-03-22 11:02 ` [PATCH v2 2/2] test: unit test for longjmp Heinrich Schuchardt
2021-03-22 13:23 ` Sean Anderson [this message]
2021-03-22 13:30 ` Sean Anderson
2021-03-22 16:42 ` Heinrich Schuchardt
2021-03-23 13:30 ` Sean Anderson
2021-03-24 9:18 ` Andreas Schwab
2021-03-24 11:16 ` Heinrich Schuchardt
2021-03-24 12:39 ` Andreas Schwab
2021-03-24 13:28 ` Heinrich Schuchardt
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=47007446-5ad9-c5b2-dc55-78400f288dc5@gmail.com \
--to=seanga2@gmail.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox