David Gow | 7170b7e | 2023-01-28 15:10:07 +0800 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
| 2 | /* |
| 3 | * Declarations for hook implementations. |
| 4 | * |
| 5 | * These will be set as the function pointers in struct kunit_hook_table, |
| 6 | * found in include/kunit/test-bug.h. |
| 7 | * |
| 8 | * Copyright (C) 2023, Google LLC. |
| 9 | * Author: David Gow <davidgow@google.com> |
| 10 | */ |
| 11 | |
| 12 | #ifndef _KUNIT_HOOKS_IMPL_H |
| 13 | #define _KUNIT_HOOKS_IMPL_H |
| 14 | |
| 15 | #include <kunit/test-bug.h> |
| 16 | |
| 17 | /* List of declarations. */ |
David Gow | 82649c7 | 2023-02-04 12:04:53 +0800 | [diff] [blame] | 18 | void __printf(3, 4) __kunit_fail_current_test_impl(const char *file, |
| 19 | int line, |
| 20 | const char *fmt, ...); |
David Gow | e047c5ea | 2023-01-31 14:46:40 +0800 | [diff] [blame] | 21 | void *__kunit_get_static_stub_address_impl(struct kunit *test, void *real_fn_addr); |
David Gow | 7170b7e | 2023-01-28 15:10:07 +0800 | [diff] [blame] | 22 | |
| 23 | /* Code to set all of the function pointers. */ |
| 24 | static inline void kunit_install_hooks(void) |
| 25 | { |
| 26 | /* Install the KUnit hook functions. */ |
| 27 | kunit_hooks.fail_current_test = __kunit_fail_current_test_impl; |
David Gow | e047c5ea | 2023-01-31 14:46:40 +0800 | [diff] [blame] | 28 | kunit_hooks.get_static_stub_address = __kunit_get_static_stub_address_impl; |
David Gow | 7170b7e | 2023-01-28 15:10:07 +0800 | [diff] [blame] | 29 | } |
| 30 | |
| 31 | #endif /* _KUNIT_HOOKS_IMPL_H */ |