Changeset e1b4ae0 in mainline for uspace/srv/net/tcp/test/tqueue.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/tqueue.c
r975d528 re1b4ae0 57 57 /* We will be calling functions that perform logging */ 58 58 rc = log_init("test-tcp"); 59 PCUT_ASSERT_INT_EQUALS(EOK, rc); 60 } 59 PCUT_ASSERT_ERRNO_VAL(EOK, rc); 60 61 rc = tcp_conns_init(); 62 PCUT_ASSERT_ERRNO_VAL(EOK, rc); 63 } 64 65 PCUT_TEST_AFTER 66 { 67 tcp_conns_fini(); 68 } 69 61 70 62 71 /** Test */ … … 75 84 seg_cnt = 0; 76 85 86 tcp_conn_lock(conn); 87 tcp_conn_reset(conn); 88 tcp_conn_unlock(conn); 77 89 tcp_conn_delete(conn); 78 90 PCUT_ASSERT_EQUALS(0, seg_cnt);
Note:
See TracChangeset
for help on using the changeset viewer.