test: replace cmocka assert_in_range with assert_uint_in_range#339
Merged
test: replace cmocka assert_in_range with assert_uint_in_range#339
Conversation
suppress warnings seen after updating cmocka 1.1.7 -> 2.0.1
(homebrew installs this version now.)
```
/Users/runner/work/toywasm/toywasm/test/test.c:478:9: error: 'cmocka_macro' is deprecated: assert_in_range: use assert_int_in_range or assert_uint_in_range instead [-Werror,-Wdeprecated-declarations]
assert_in_range(id, 1, 3);
^
/opt/homebrew/include/cmocka.h:5345:9: note: expanded from macro 'assert_in_range'
CMOCKA_DEPRECATION_WARNING( \
^
/opt/homebrew/include/cmocka.h:219:9: note: expanded from macro 'CMOCKA_DEPRECATION_WARNING'
cmocka_macro cmocka_deprecated_var __attribute__((unused)) = 0; \
^
/Users/runner/work/toywasm/toywasm/test/test.c:478:9: note: 'cmocka_macro' has been explicitly marked deprecated here
/opt/homebrew/include/cmocka.h:5345:9: note: expanded from macro 'assert_in_range'
CMOCKA_DEPRECATION_WARNING( \
^
/opt/homebrew/include/cmocka.h:218:49: note: expanded from macro 'CMOCKA_DEPRECATION_WARNING'
typedef int cmocka_macro __attribute__((deprecated(msg))); \
^
```
d6b19ba to
2069e0f
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
suppress warnings seen after updating cmocka 1.1.7 -> 2.0.1