Add more delay in test-program

This commit is contained in:
Sukchan Lee 2019-12-08 04:04:20 +00:00
parent b5307cdb7a
commit cef1b46130
3 changed files with 5 additions and 1 deletions

View File

@ -233,7 +233,7 @@ static void test1_func(abts_case *tc, void *data)
rv = testenb_s1ap_send(s1ap, sendbuf);
ABTS_INT_EQUAL(tc, OGS_OK, rv);
ogs_msleep(300);
ogs_msleep(50);
/* Send SGsAP-Paging-Request */
rv = testsgsap_paging_request(&sendbuf, 2);

View File

@ -236,6 +236,8 @@ static void attach_test1(abts_case *tc, void *data)
rv = testenb_s1ap_send(s1ap, sendbuf);
ABTS_INT_EQUAL(tc, OGS_OK, rv);
ogs_msleep(50);
/* Receive EMM information */
recvbuf = testenb_s1ap_read(s1ap);
ABTS_PTR_NOTNULL(tc, recvbuf);

View File

@ -285,6 +285,8 @@ static void volte_test1(abts_case *tc, void *data)
rv = testenb_s1ap_send(s1ap, sendbuf);
ABTS_INT_EQUAL(tc, OGS_OK, rv);
ogs_msleep(50);
/* Send Deactivate EPS bearer context accept */
rv = tests1ap_build_deactivate_bearer_accept(&sendbuf, msgindex+1);
ABTS_INT_EQUAL(tc, OGS_OK, rv);