Changeset e1b4ae0 in mainline for uspace/srv/net/tcp/test/pdu.c
- Timestamp:
- 2017-09-11T07:05:21Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9713b0b
- Parents:
- 975d528
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tcp/test/pdu.c
r975d528 re1b4ae0 62 62 63 63 rc = tcp_pdu_encode(&epp, seg, &pdu); 64 PCUT_ASSERT_ INT_EQUALS(EOK, rc);64 PCUT_ASSERT_ERRNO_VAL(EOK, rc); 65 65 rc = tcp_pdu_decode(pdu, &depp, &dseg); 66 PCUT_ASSERT_ INT_EQUALS(EOK, rc);66 PCUT_ASSERT_ERRNO_VAL(EOK, rc); 67 67 68 68 test_seg_same(seg, dseg); … … 100 100 101 101 rc = tcp_pdu_encode(&epp, seg, &pdu); 102 PCUT_ASSERT_ INT_EQUALS(EOK, rc);102 PCUT_ASSERT_ERRNO_VAL(EOK, rc); 103 103 rc = tcp_pdu_decode(pdu, &depp, &dseg); 104 PCUT_ASSERT_ INT_EQUALS(EOK, rc);104 PCUT_ASSERT_ERRNO_VAL(EOK, rc); 105 105 106 106 test_seg_same(seg, dseg);
Note:
See TracChangeset
for help on using the changeset viewer.