This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
daniel gerrit-no-reply at lists.osmocom.orgdaniel has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/22443 )
Change subject: gbproxy: Increemnt many timeouts from 1s to 2s.
......................................................................
gbproxy: Increemnt many timeouts from 1s to 2s.
Sending a message [even over a real or simulated E1 line] should always
be less than 1s end-to-end. But just to see if increasing the timeouts
to 2s will result in less test failures, let's change from 1s to 2s.
Change-Id: Iebb43283ad7c267c6ed7f49989ec453be38956a9
---
M gbproxy/GBProxy_Tests.ttcn
1 file changed, 8 insertions(+), 8 deletions(-)
Approvals:
Jenkins Builder: Verified
pespin: Looks good to me, but someone else must approve
daniel: Looks good to me, approved
diff --git a/gbproxy/GBProxy_Tests.ttcn b/gbproxy/GBProxy_Tests.ttcn
index ddcd9cb..df27a3d 100644
--- a/gbproxy/GBProxy_Tests.ttcn
+++ b/gbproxy/GBProxy_Tests.ttcn
@@ -804,7 +804,7 @@
integer pcu_idx := 0, boolean use_sig := false) runs on BSSGP_ConnHdlr {
var integer sgsn_idx := g_pars.sgsn_idx;
var PDU_BSSGP rx;
- timer T := 1.0;
+ timer T := 2.0;
if (use_sig) {
PCU_SIG[pcu_idx].send(tx);
@@ -841,7 +841,7 @@
runs on BSSGP_ConnHdlr return integer {
var integer rx_idx := -1;
var PDU_BSSGP rx;
- timer T := 1.0;
+ timer T := 2.0;
if (use_sig) {
PCU_SIG[pcu_idx].send(tx);
@@ -878,7 +878,7 @@
integer pcu_idx := 0, boolean use_sig := false) runs on BSSGP_ConnHdlr {
var integer sgsn_idx := g_pars.sgsn_idx;
var PDU_BSSGP rx;
- timer T := 1.0;
+ timer T := 2.0;
if (use_sig) {
SGSN_SIG[sgsn_idx].send(tx);
@@ -975,7 +975,7 @@
integer pcu_idx := 0, integer sgsn_idx := 0) runs on GlobalTest_CT {
var integer rx_idx;
var PDU_BSSGP rx;
- timer T := 1.0;
+ timer T := 2.0;
G_PCU[pcu_idx].send(tx);
T.start;
@@ -1002,7 +1002,7 @@
integer sgsn_idx := 0, integer pcu_idx := 0) runs on GlobalTest_CT {
var integer rx_idx;
var PDU_BSSGP rx;
- timer T := 1.0;
+ timer T := 2.0;
G_SGSN[sgsn_idx].send(tx);
T.start;
@@ -2819,7 +2819,7 @@
friend function f_rim_pcu2sgsn(template (value) PDU_BSSGP tx, template (present) PDU_BSSGP exp_rx,
integer pcu_idx := 0) runs on GlobalTest_CT {
var PDU_BSSGP rx;
- timer T := 1.0;
+ timer T := 2.0;
RIM_PCU[pcu_idx].send(tx);
T.start;
@@ -2842,7 +2842,7 @@
friend function f_rim_sgsn2pcu(template (value) PDU_BSSGP tx, template (present) PDU_BSSGP exp_rx,
integer sgsn_idx := 0, integer pcu_idx := 0) runs on GlobalTest_CT {
var PDU_BSSGP rx;
- timer T := 1.0;
+ timer T := 2.0;
RIM_SGSN[sgsn_idx].send(tx);
T.start;
@@ -2866,7 +2866,7 @@
integer src_pcu_idx, integer dst_pcu_idx) runs on GlobalTest_CT {
var integer rx_idx;
var PDU_BSSGP rx;
- timer T := 1.0;
+ timer T := 2.0;
RIM_PCU[src_pcu_idx].send(tx);
T.start;
--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/22443
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: Iebb43283ad7c267c6ed7f49989ec453be38956a9
Gerrit-Change-Number: 22443
Gerrit-PatchSet: 1
Gerrit-Owner: laforge <laforge at osmocom.org>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: daniel <dwillmann at sysmocom.de>
Gerrit-Reviewer: pespin <pespin at sysmocom.de>
Gerrit-MessageType: merged
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20210126/7dc378fd/attachment.htm>