summaryrefslogtreecommitdiffstats
path: root/lib/kunit/hooks-impl.h
diff options
context:
space:
mode:
authorDavid Gow <davidgow@google.com>2023-02-04 12:04:53 +0800
committerShuah Khan <skhan@linuxfoundation.org>2023-02-08 18:08:14 -0700
commit82649c7c0da431d147a75c6ae768ee42c1053f53 (patch)
tree85b1377f3aa20e84fdfc995fc78c052797fb6c28 /lib/kunit/hooks-impl.h
parent789538c61fc11dbe8b6456cfb365d52156a7b133 (diff)
downloadlinux-82649c7c0da431d147a75c6ae768ee42c1053f53.tar.gz
linux-82649c7c0da431d147a75c6ae768ee42c1053f53.tar.bz2
linux-82649c7c0da431d147a75c6ae768ee42c1053f53.zip
kunit: Add printf attribute to fail_current_test_impl
Add the gnu_printf (__printf()) attribute to the kunit_fail_current_test() implementation in __kunit_fail_current_test_impl(). While it's not actually useful here, as this function is never called directly, it nevertheless was triggering -Wsuggest-attribute=format warnings, so we should add it to reduce the noise. Fixes: cc3ed2fe5c93 ("kunit: Add "hooks" to call into KUnit when it's built as a module") Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: David Gow <davidgow@google.com> Reviewed-by: Rae Moar <rmoar@google.com> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'lib/kunit/hooks-impl.h')
-rw-r--r--lib/kunit/hooks-impl.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/kunit/hooks-impl.h b/lib/kunit/hooks-impl.h
index ec745a39832c..4e71b2d0143b 100644
--- a/lib/kunit/hooks-impl.h
+++ b/lib/kunit/hooks-impl.h
@@ -15,7 +15,9 @@
#include <kunit/test-bug.h>
/* List of declarations. */
-void __kunit_fail_current_test_impl(const char *file, int line, const char *fmt, ...);
+void __printf(3, 4) __kunit_fail_current_test_impl(const char *file,
+ int line,
+ const char *fmt, ...);
void *__kunit_get_static_stub_address_impl(struct kunit *test, void *real_fn_addr);
/* Code to set all of the function pointers. */