laforge has submitted this change. ( 
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/36696?usp=email )

Change subject: hnbgw: skip f_statsd_expect for latest
......................................................................

hnbgw: skip f_statsd_expect for latest

Fix that 6 tests started failing on ttcn3-hnbgw-test-latest with e.g.:
  Timeout waiting for metrics
        HNBGW_Tests.ttcn:2885 HNBGW_Tests control part
        HNBGW_Tests.ttcn:1536 TC_rab_assign_fail testcase

Fixes: 904b5f1a ("hnbgw: Implement validation of [some] counters")
Change-Id: I0cd47728308757fe6eaaaed1581fbbec03a09cf7
---
M hnbgw/HNBGW_Tests.ttcn
1 file changed, 33 insertions(+), 6 deletions(-)

Approvals:
  laforge: Looks good to me, approved
  Jenkins Builder: Verified
  pespin: Looks good to me, but someone else must approve
  fixeria: Looks good to me, but someone else must approve




diff --git a/hnbgw/HNBGW_Tests.ttcn b/hnbgw/HNBGW_Tests.ttcn
index 3369e37..88b8c1e 100644
--- a/hnbgw/HNBGW_Tests.ttcn
+++ b/hnbgw/HNBGW_Tests.ttcn
@@ -1442,7 +1442,9 @@
                {name := hnb0_ctr_prefix & "ranap.cs.rab_act.cnf", mtype := 
"c", min := 0, max := 0},
                {name := hnb0_ctr_prefix & "ranap.cs.rab_act.fail", mtype := 
"c", min := 0, max := 0}
        };
-       f_statsd_expect(expect);
+       if (f_osmo_repo_is("nightly")) {
+               f_statsd_expect(expect);
+       }

        f_create_rab(pars.mgcp_pars);

@@ -1451,7 +1453,9 @@
                {name := hnb0_ctr_prefix & "ranap.cs.rab_act.cnf", mtype := 
"c", min := 1, max := 1},
                {name := hnb0_ctr_prefix & "ranap.cs.rab_act.fail", mtype := 
"c", min := 0, max := 0}
        };
-       f_statsd_expect(expect);
+       if (f_osmo_repo_is("nightly")) {
+               f_statsd_expect(expect);
+       }

        /* Send Iu Release */
        tx := valueof(ts_RANAP_IuReleaseCommand(pars.rab_rel_cause));
@@ -1500,7 +1504,9 @@
                {name := hnb0_ctr_prefix & "ranap.cs.rab_act.cnf", mtype := 
"c", min := 0, max := 0},
                {name := hnb0_ctr_prefix & "ranap.cs.rab_act.fail", mtype := 
"c", min := 0, max := 0}
        };
-       f_statsd_expect(expect);
+       if (f_osmo_repo_is("nightly")) {
+               f_statsd_expect(expect);
+       }
 
        f_rab_ass_req(pars.mgcp_pars);

@@ -1513,7 +1519,9 @@
                {name := hnb0_ctr_prefix & "ranap.cs.rab_act.cnf", mtype := 
"c", min := 0, max := 0},
                {name := hnb0_ctr_prefix & "ranap.cs.rab_act.fail", mtype := 
"c", min := 1, max := 1}
        };
-       f_statsd_expect(expect);
+       if (f_osmo_repo_is("nightly")) {
+               f_statsd_expect(expect);
+       }


        T.start;
@@ -1563,7 +1571,9 @@
        var StatsDExpects expect := {
                {name := hnb0_ctr_prefix & ctr_name, mtype := "c", min := 0, 
max := 0}
        };
-       f_statsd_expect(expect);
+       if (f_osmo_repo_is("nightly")) {
+               f_statsd_expect(expect);
+       }

        /* Send RAB Release */
        tx := valueof(ts_RANAP_RabAssReq(rab_rl := ts_RAB_RL(t_RAB_id(23), 
pars.rab_rel_cause)));
@@ -1572,7 +1582,9 @@
        expect := {
                {name := hnb0_ctr_prefix & ctr_name, mtype := "c", min := 1, 
max := 1}
        };
-       f_statsd_expect(expect);
+       if (f_osmo_repo_is("nightly")) {
+               f_statsd_expect(expect);
+       }

        T.start;


--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/36696?usp=email
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I0cd47728308757fe6eaaaed1581fbbec03a09cf7
Gerrit-Change-Number: 36696
Gerrit-PatchSet: 2
Gerrit-Owner: osmith <[email protected]>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: dexter <[email protected]>
Gerrit-Reviewer: fixeria <[email protected]>
Gerrit-Reviewer: laforge <[email protected]>
Gerrit-Reviewer: pespin <[email protected]>
Gerrit-MessageType: merged

Reply via email to