-
Notifications
You must be signed in to change notification settings - Fork 7.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Disable erroneous warnings from clang #87498
Disable erroneous warnings from clang #87498
Conversation
1c1b7ed
to
8d1a397
Compare
We could also just disable the Since this warning occurs in so few places, I propose we just disable the few places we get erroneous warnings. |
8d1a397
to
3ea56a8
Compare
For the HTTP server test at least, I think the warning is genuine and we should probably verify that the response matches the expected string. Adding:
after |
Ah, thanks. I created #87585 to fix that. Let me know if you have ideas for the other tests. |
d4b0575
to
a8fef07
Compare
tests/subsys/mgmt/mcumgr/settings_mgmt/src/main.c:69:22: error: variable 'test_response_read_data_start' is not needed and will not be emitted [-Werror,-Wunneeded-internal-declaration] static const uint8_t test_response_read_data_start[5] = { ^ tests/subsys/mgmt/mcumgr/settings_mgmt/src/main.c:73:22: error: variable 'test_response_read_data_end' is not needed and will not be emitted [-Werror,-Wunneeded-internal-declaration] static const uint8_t test_response_read_data_end[1] = { ^ Signed-off-by: Tom Hughes <tomhughes@chromium.org>
tests/subsys/usb/bos/src/test_bos.c:24:22: error: variable 'dummy_descriptor' is not needed and will not be emitted [-Werror,-Wunneeded-internal-declaration] static const uint8_t dummy_descriptor[] = { ^ Signed-off-by: Tom Hughes <tomhughes@chromium.org>
a8fef07
to
8db4009
Compare
Rather than disable the warnings, I created PRs to adjust the tests: |
When building with
clang
, a few files are emitting warnings such as:However, this variable is needed at compile-time since it's referenced
via
sizeof()
. This appears to be the same as this clang bug:llvm/llvm-project#25458.
This warning only started being emitted when I re-enabled the
-Wunused-function
warning for clang.