kunit: Add printf attribute to fail_current_test_impl
authorDavid Gow <davidgow@google.com>
Sat, 4 Feb 2023 04:04:53 +0000 (12:04 +0800)
committerShuah Khan <skhan@linuxfoundation.org>
Thu, 9 Feb 2023 01:08:14 +0000 (18:08 -0700)
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>
lib/kunit/hooks-impl.h
lib/kunit/test.c

index ec745a39832c1997524c3ca5cf6a6d5604e06016..4e71b2d0143babc79c767c06e752bf9170025a7f 100644 (file)
@@ -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. */
index 51cae59d8aae0febb8d2551016dd78f2e7a0668a..c9e15bb60058470adb4106cf892da1a169d657fd 100644 (file)
@@ -24,7 +24,7 @@
 /*
  * Hook to fail the current test and print an error message to the log.
  */
-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, ...)
 {
        va_list args;
        int len;