Attention is currently required from: msuraev.
fixeria has posted comments on this change. ( https://gerrit.osmocom.org/c/osmo-pcap/+/32127 )
Change subject: contrib/jenkins.sh: build with --enable-external-tests
......................................................................
Patch Set 1:
(1 comment)
Patchset:
PS1:
> Interesting, where do we test with travis?
We don't, I guess Holger initially had it hosted on GitHub:
```
commit 9646754e1f82d3b846304dc5803d520641064ba4
Author: Holger Hans Peter Freyther <holger(a)moiji-mobile.com>
Date: Wed Aug 3 21:13:15 2016 +0200
ci: Add travis.yml for the github account
```
--
To view, visit https://gerrit.osmocom.org/c/osmo-pcap/+/32127
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-pcap
Gerrit-Branch: master
Gerrit-Change-Id: Ic9d37b231510e592198a9de707dfe8f5f2703dce
Gerrit-Change-Number: 32127
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-CC: msuraev <msuraev(a)sysmocom.de>
Gerrit-Attention: msuraev <msuraev(a)sysmocom.de>
Gerrit-Comment-Date: Fri, 14 Apr 2023 11:30:09 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: msuraev <msuraev(a)sysmocom.de>
Gerrit-MessageType: comment
fixeria has submitted this change. ( https://gerrit.osmocom.org/c/pysim/+/32297 )
Change subject: pySim-prog.py: fix SyntaxWarning: using is with a literal
......................................................................
pySim-prog.py: fix SyntaxWarning: using is with a literal
Change-Id: If9460bf827242a1dfc518213e3faa9137a21869a
---
M pySim-prog.py
1 file changed, 11 insertions(+), 2 deletions(-)
Approvals:
pespin: Looks good to me, but someone else must approve
Jenkins Builder: Verified
msuraev: Looks good to me, but someone else must approve
fixeria: Looks good to me, approved
diff --git a/pySim-prog.py b/pySim-prog.py
index b3919ee..448f2a0 100755
--- a/pySim-prog.py
+++ b/pySim-prog.py
@@ -599,9 +599,9 @@
# commandline options we can use that info, otherwise we guess that
# the length is 2, which is also the most common case.
if opts.mnclen != "auto":
- if opts.mnclen is "2":
+ if opts.mnclen == "2":
row['mnc'] = row.get('mnc', mnc_from_imsi(row.get('imsi'), False))
- elif opts.mnclen is "3":
+ elif opts.mnclen == "3":
row['mnc'] = row.get('mnc', mnc_from_imsi(row.get('imsi'), True))
else:
raise ValueError("invalid parameter --mnclen, must be 2 or 3 or auto")
--
To view, visit https://gerrit.osmocom.org/c/pysim/+/32297
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: pysim
Gerrit-Branch: master
Gerrit-Change-Id: If9460bf827242a1dfc518213e3faa9137a21869a
Gerrit-Change-Number: 32297
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: msuraev <msuraev(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: merged
Attention is currently required from: fixeria, msuraev.
pespin has posted comments on this change. ( https://gerrit.osmocom.org/c/osmocom-bb/+/32303 )
Change subject: trxcon/l1sched: add l1sched_find_lchan_by_chan_nr()
......................................................................
Patch Set 1:
(1 comment)
File src/host/trxcon/src/sched_trx.c:
https://gerrit.osmocom.org/c/osmocom-bb/+/32303/comment/703337e3_166be2bb
PS1, Line 440: if (lchan_desc->chan_nr != (chan_nr & 0xf8))
> Where those magic numbers come from?
Ack. It is not clear for us what are you checking here.
--
To view, visit https://gerrit.osmocom.org/c/osmocom-bb/+/32303
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: I9917a932c9a4aeb4b3ef7053bd58066b3aa41edb
Gerrit-Change-Number: 32303
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-CC: msuraev <msuraev(a)sysmocom.de>
Gerrit-CC: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Attention: msuraev <msuraev(a)sysmocom.de>
Gerrit-Comment-Date: Fri, 14 Apr 2023 09:57:14 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: msuraev <msuraev(a)sysmocom.de>
Gerrit-MessageType: comment