You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Depending on the architecture's implementation of char, the test could fail. According to The C Programming Language, the implementation of char has implementation defined limits. The portable way to do this would be to use signed char.
Test cases failing on Power PC because of this.
The text was updated successfully, but these errors were encountered:
In tests like test_shmem_zero_get.c, there is an invalid comparison between a char and a negative number.
tests-uh/feature_tests/C/test_shmem_zero_get.c
Line 197 in 15d685d
Depending on the architecture's implementation of char, the test could fail. According to The C Programming Language, the implementation of char has implementation defined limits. The portable way to do this would be to use signed char.
Test cases failing on Power PC because of this.
The text was updated successfully, but these errors were encountered: