diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2020-06-23 02:07:37 +0200 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2020-07-06 23:07:47 +0200 |
commit | 3c01655ac82eb6d1cc2cfe9507031f1b5e0a6df1 (patch) | |
tree | 597e5457583a02804d3d360280805045b29a7770 /tools | |
parent | selftests: tpm: upgrade TPM2 tests from Python 2 to Python 3 (diff) | |
download | linux-3c01655ac82eb6d1cc2cfe9507031f1b5e0a6df1.tar.xz linux-3c01655ac82eb6d1cc2cfe9507031f1b5e0a6df1.zip |
kselftest: ksft_test_num return type should be unsigned
Fixes a compiler warning:
In file included from sync_test.c:37:
../kselftest.h: In function ‘ksft_print_cnts’:
../kselftest.h:78:16: warning: comparison of integer expressions of different signedness: ‘unsigned int’ and ‘int’ [-Wsign-compare]
if (ksft_plan != ksft_test_num())
^~
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testing/selftests/kselftest.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/kselftest.h b/tools/testing/selftests/kselftest.h index 0ac49d91a260..862eee734553 100644 --- a/tools/testing/selftests/kselftest.h +++ b/tools/testing/selftests/kselftest.h @@ -36,7 +36,7 @@ struct ksft_count { static struct ksft_count ksft_cnt; static unsigned int ksft_plan; -static inline int ksft_test_num(void) +static inline unsigned int ksft_test_num(void) { return ksft_cnt.ksft_pass + ksft_cnt.ksft_fail + ksft_cnt.ksft_xfail + ksft_cnt.ksft_xpass + |