We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fedbffd commit b391447Copy full SHA for b391447
code/tests/cases/test_tdd.c
@@ -957,7 +957,7 @@ FOSSIL_TEST(c_assume_run_of_bitwise_true) {
957
ASSUME_ITS_BITWISE_TRUE(a & 0x80);
958
ASSUME_ITS_BITWISE_TRUE(b & 0x01);
959
ASSUME_ITS_BITWISE_TRUE(c == 0xFF);
960
- ASSUME_ITS_BITWISE_TRUE(~d == 0xFF);
+ ASSUME_ITS_BITWISE_TRUE((uint8_t)(~d) == 0xFF);
961
}
962
963
FOSSIL_TEST(c_assume_run_of_bitwise_false) {
0 commit comments