osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ci/+/37630?usp=email )
Change subject: OBS: osmocom:master: ignore missing commit_*.txt
......................................................................
OBS: osmocom:master: ignore missing commit_*.txt
Do not abort if the commit_*.txt file has been deleted from a package in
osmocom:master. Instead, assume the package is outdated, create a new
source package (with commit_*.txt) and replace the existing source
package.
This is useful to force rebuilding a package, e.g. if the previous
source package was built when the git tag was not pushed yet, and
therefore the version in the package and for libraries, in the
pkg-config data, don't have the proper version yet.
Change-Id: Ia6129f533394b94d5d8525eb0513a38a6e1eb7b6
---
M scripts/obs/lib/osc.py
1 file changed, 22 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ci refs/changes/30/37630/1
diff --git a/scripts/obs/lib/osc.py b/scripts/obs/lib/osc.py
index ef2fc4b..57be783 100644
--- a/scripts/obs/lib/osc.py
+++ b/scripts/obs/lib/osc.py
@@ -86,8 +86,9 @@
if line.endswith(".dsc"):
return line.split("_")[-1][:-4]
- lib.exit_error_cmd(ret, "failed to find package version on OBS by"
- " extracting the version from the file list")
+ print(f"{package}: WARNING: failed to find package version on OBS!")
+ print(f"{package}: assuming the package is outdated")
+ return "0"
def create_package(package):
--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/37630?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: Ia6129f533394b94d5d8525eb0513a38a6e1eb7b6
Gerrit-Change-Number: 37630
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-MessageType: newchange
pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37616?usp=email )
(
2 is the latest approved patch-set.
No files were changed between the latest approved patch-set and the submitted one.
)Change subject: ggsn: Fix function name
......................................................................
ggsn: Fix function name
The function is used to handle a UpdatePDPCtxResp, not a Req.
While at it, mark the function as private.
Change-Id: Ia455af1cd64ffce53b454e611c4fc85816e785bc
---
M ggsn_tests/GGSN_Tests.ttcn
1 file changed, 14 insertions(+), 2 deletions(-)
Approvals:
Jenkins Builder: Verified
osmith: Looks good to me, approved
diff --git a/ggsn_tests/GGSN_Tests.ttcn b/ggsn_tests/GGSN_Tests.ttcn
index 23a9924..3f373aa 100644
--- a/ggsn_tests/GGSN_Tests.ttcn
+++ b/ggsn_tests/GGSN_Tests.ttcn
@@ -472,7 +472,7 @@
setverdict(pass);
}
- function f_handle_update_req(inout PdpContext ctx, in Gtp1cUnitdata ud, in OCT1 exp_cause := '80'O) runs on GT_CT {
+ private function f_handle_update_resp(inout PdpContext ctx, in Gtp1cUnitdata ud, in OCT1 exp_cause := '80'O) runs on GT_CT {
var UpdatePDPContextResponseGGSN upr := ud.gtpc.gtpc_pdu.updatePDPContextResponse.updatePDPContextResponseGGSN;
if (exp_cause == '80'O and exp_cause == upr.cause.causevalue) {
ctx.teid_remote := upr.teidDataI.teidDataI;
@@ -828,7 +828,7 @@
d := activate(pingpong());
alt {
[] GTPC.receive(tr_GTPC_MsgType(g_peer_c, updatePDPContextResponse, ctx.teic)) -> value ud {
- f_handle_update_req(ctx, ud, exp_cause);
+ f_handle_update_resp(ctx, ud, exp_cause);
}
}
deactivate(d);
--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37616?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: Ia455af1cd64ffce53b454e611c4fc85816e785bc
Gerrit-Change-Number: 37616
Gerrit-PatchSet: 3
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: merged