From 536d66e344f515b31bf92ad5f88a68367f7bb6ba Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Sat, 24 Sep 2022 21:08:30 +0200 Subject: [PATCH] stream: minor test cleanup --- src/tests/stream-tcp.c | 25 ++++--------------------- 1 file changed, 4 insertions(+), 21 deletions(-) diff --git a/src/tests/stream-tcp.c b/src/tests/stream-tcp.c index 19c126121d..c6eec9b902 100644 --- a/src/tests/stream-tcp.c +++ b/src/tests/stream-tcp.c @@ -46,34 +46,17 @@ static int StreamTcpTest01(void) memset(&f, 0, sizeof(Flow)); FLOW_INITIALIZE(&f); p->flow = &f; - int ret = 0; - StreamTcpUTInit(&stt.ra_ctx); - TcpSession *ssn = StreamTcpNewSession(p, 0); - if (ssn == NULL) { - printf("Session can not be allocated: "); - goto end; - } + FAIL_IF_NULL(ssn); f.protoctx = ssn; - - if (f.alparser != NULL) { - printf("AppLayer field not set to NULL: "); - goto end; - } - if (ssn->state != 0) { - printf("TCP state field not set to 0: "); - goto end; - } - + FAIL_IF_NOT_NULL(f.alparser); + FAIL_IF_NOT(ssn->state == 0); StreamTcpSessionClear(p->flow->protoctx); - - ret = 1; -end: SCFree(p); FLOW_DESTROY(&f); StreamTcpUTDeinit(stt.ra_ctx); - return ret; + PASS; } /** -- 2.47.2