[LTP] [PATCH 2/2] lib: build check parameters for tst_brk()
Xiao Yang
yangx.jy@cn.fujitsu.com
Fri Nov 9 02:56:46 CET 2018
On 2018/11/09 4:59, Jan Stancek wrote:
> This patch adds simple build-check that allows only
> TFAIL, TBROK and TCONF as parameter for tst_brk().
>
> TFAIL is currently quite commonly used as a shortcut for
> TFAIL + exit() by many tests. I kept it for now, since
> it doesn't go against current doc description.
>
> Per kernel comments this approach works fine for simple
> cases, which should be sufficient for LTP, e.g. we don't
> pass TBROK as a paramter to inlined function, that passes
> it further down to tst_brk().
>
> Signed-off-by: Jan Stancek<jstancek@redhat.com>
> ---
> include/tst_common.h | 3 +++
> include/tst_test.h | 7 +++++--
> 2 files changed, 8 insertions(+), 2 deletions(-)
>
> diff --git a/include/tst_common.h b/include/tst_common.h
> index 27924766ef6e..358f2a76ecda 100644
> --- a/include/tst_common.h
> +++ b/include/tst_common.h
> @@ -65,4 +65,7 @@
> ERET; \
> })
>
> +#define BUILD_BUG_ON(condition) \
> + do { ((void)sizeof(char[1 - 2 * !!(condition)])); } while (0)
> +
> #endif /* TST_COMMON_H__ */
> diff --git a/include/tst_test.h b/include/tst_test.h
> index 2ebf746eb720..cd936eb792bd 100644
> --- a/include/tst_test.h
> +++ b/include/tst_test.h
> @@ -69,8 +69,11 @@ void tst_brk_(const char *file, const int lineno, int ttype,
> const char *fmt, ...)
> __attribute__ ((format (printf, 4, 5)));
>
> -#define tst_brk(ttype, arg_fmt, ...) \
> - tst_brk_(__FILE__, __LINE__, (ttype), (arg_fmt), ##__VA_ARGS__)
> +#define tst_brk(ttype, arg_fmt, ...) \
> + ({ \
> + BUILD_BUG_ON(!((ttype)& (TBROK | TCONF | TFAIL))); \
> + tst_brk_(__FILE__, __LINE__, (ttype), (arg_fmt), ##__VA_ARGS__);\
> + })
Hi Jan,
Perhaps, we could add some hints about the invalid ttype.
e.g. "tst_brk(): invalid type, please use TBROK/TCONF/TFAIL"
Other than that, this patch set looks good to me.
Best Regards,
Xiao Yang
>
> /* flush stderr and stdout */
> void tst_flush(void);
More information about the ltp
mailing list