/* SPDX-License-Identifier: GPL-2.0 */1/*2* KUnit API providing hooks for non-test code to interact with tests.3*4* Copyright (C) 2020, Google LLC.5* Author: Uriel Guajardo <[email protected]>6*/78#ifndef _KUNIT_TEST_BUG_H9#define _KUNIT_TEST_BUG_H1011#include <linux/stddef.h> /* for NULL */1213#if IS_ENABLED(CONFIG_KUNIT)1415#include <linux/jump_label.h> /* For static branch */16#include <linux/sched.h>1718/* Static key if KUnit is running any tests. */19DECLARE_STATIC_KEY_FALSE(kunit_running);2021/* Hooks table: a table of function pointers filled in when kunit loads */22extern struct kunit_hooks_table {23__printf(3, 4) void (*fail_current_test)(const char*, int, const char*, ...);24void *(*get_static_stub_address)(struct kunit *test, void *real_fn_addr);25} kunit_hooks;2627/**28* kunit_get_current_test() - Return a pointer to the currently running29* KUnit test.30*31* If a KUnit test is running in the current task, returns a pointer to its32* associated struct kunit. This pointer can then be passed to any KUnit33* function or assertion. If no test is running (or a test is running in a34* different task), returns NULL.35*36* This function is safe to call even when KUnit is disabled. If CONFIG_KUNIT37* is not enabled, it will compile down to nothing and will return quickly no38* test is running.39*/40static inline struct kunit *kunit_get_current_test(void)41{42if (!static_branch_unlikely(&kunit_running))43return NULL;4445return current->kunit_test;46}474849/**50* kunit_fail_current_test() - If a KUnit test is running, fail it.51*52* If a KUnit test is running in the current task, mark that test as failed.53*/54#define kunit_fail_current_test(fmt, ...) do { \55if (static_branch_unlikely(&kunit_running)) { \56/* Guaranteed to be non-NULL when kunit_running true*/ \57kunit_hooks.fail_current_test(__FILE__, __LINE__, \58fmt, ##__VA_ARGS__); \59} \60} while (0)6162#else6364static inline struct kunit *kunit_get_current_test(void) { return NULL; }6566#define kunit_fail_current_test(fmt, ...) do {} while (0)6768#endif6970#endif /* _KUNIT_TEST_BUG_H */717273