aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2021-08-06 22:01:53 +0200
committerosmith <osmith@sysmocom.de>2021-08-10 10:38:12 +0000
commit36d95d850290562778d8946f8a09578523c24ac9 (patch)
tree8cc666bf2405fa29d9911af511ba538f49bfb79b
parent61b4e73379b247b992a9b5ca9ddc67d955140769 (diff)
pcu: test counter bts.0.pch.requests
-rw-r--r--pcu/PCU_Tests.ttcn6
1 files changed, 5 insertions, 1 deletions
diff --git a/pcu/PCU_Tests.ttcn b/pcu/PCU_Tests.ttcn
index 3d4bcee0..804644a3 100644
--- a/pcu/PCU_Tests.ttcn
+++ b/pcu/PCU_Tests.ttcn
@@ -3207,7 +3207,11 @@ runs on RAW_PCU_Test_CT {
if (mp_osmo_pcu_newer_than_0_9_0) {
var StatsDExpects expect := {
- { name := "TTCN3.pcu.sgsn.0.rx_paging_ps", mtype := "c", min := 1, max := 1 }
+ { name := "TTCN3.pcu.sgsn.0.rx_paging_ps", mtype := "c", min := 1, max := 1 },
+ /* After the PCU receives the paging request from SGSN,
+ * and it doesn't have any errors, PCU sends it to the
+ * BTS to do paging over PCH. */
+ { name := "TTCN3.bts.0.pch.requests", mtype := "c", min := 1, max := 1 }
};
f_statsd_expect(expect);
}