#include <kunit/test.h>
#include "xe_args.h"
static void call_args_example(struct kunit *test)
{ … }
static void drop_first_arg_example(struct kunit *test)
{ … }
static void first_arg_example(struct kunit *test)
{ … }
static void last_arg_example(struct kunit *test)
{ … }
static void pick_arg_example(struct kunit *test)
{ … }
static void sep_comma_example(struct kunit *test)
{ … }
#define NO_ARGS
#define FOO_ARGS …
#define MAX_ARGS …
static void count_args_test(struct kunit *test)
{ … }
static void call_args_test(struct kunit *test)
{ … }
static void drop_first_arg_test(struct kunit *test)
{ … }
static void first_arg_test(struct kunit *test)
{ … }
static void last_arg_test(struct kunit *test)
{ … }
static struct kunit_case args_tests[] = …;
static struct kunit_suite args_test_suite = …;
kunit_test_suite(…) …;