Changeset f988834 for tests/collections/string-compare.cfa
- Timestamp:
- Jan 19, 2024, 2:44:41 AM (20 months ago)
- Branches:
- master
- Children:
- ac939461
- Parents:
- 59c8dff (diff), e8b3717 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/collections/string-compare.cfa
r59c8dff rf988834 3 3 4 4 #define test_eq_(l, r) \ 5 chk( ( cmp(l, r) == 0) ) \5 chk( (strcmp(l, r) == 0) ) \ 6 6 chk( (l == r) ) \ 7 7 chk( !(l != r) ) \ … … 17 17 18 18 #define test_lt_(l, r) \ 19 chk( ( cmp(l, r) < 0) ) \19 chk( (strcmp(l, r) < 0) ) \ 20 20 chk( !(l == r) ) \ 21 21 chk( (l != r) ) \ … … 26 26 27 27 #define test_gt_(l, r) \ 28 chk( ( cmp(l, r) > 0) ) \28 chk( (strcmp(l, r) > 0) ) \ 29 29 chk( !(l == r) ) \ 30 30 chk( (l != r) ) \
Note:
See TracChangeset
for help on using the changeset viewer.