Remove a wrong test in test_mbuf.c

This commit is contained in:
Nils O. Selåsdal
2013-11-25 23:41:53 +01:00
parent e911fcfa8b
commit 59f6d99419
-3
View File
@@ -279,7 +279,6 @@ END_TEST
START_TEST (test_mbuf_extend_tailroom_wrong_type) START_TEST (test_mbuf_extend_tailroom_wrong_type)
struct MBuf *mbuf; struct MBuf *mbuf;
uint8_t *data;
int rc; int rc;
mbuf = uc_mbuf_new_inline(10); mbuf = uc_mbuf_new_inline(10);
@@ -288,8 +287,6 @@ START_TEST (test_mbuf_extend_tailroom_wrong_type)
rc = uc_mbuf_extend_tailroom(mbuf, 1024); rc = uc_mbuf_extend_tailroom(mbuf, 1024);
ck_assert_int_ne(rc, 0); ck_assert_int_ne(rc, 0);
fail_if(data == NULL);
uc_mbuf_free(mbuf); uc_mbuf_free(mbuf);
END_TEST END_TEST