Attention is currently required from: fixeria.
pespin has posted comments on this change. ( https://gerrit.osmocom.org/c/libosmo-gprs/+/30797 )
Change subject: rlcmac: add decoder and test vectors for IA Rest Octets
......................................................................
Patch Set 1:
(1 comment)
File tests/rlcmac/ts_44_018_test.c:
https://gerrit.osmocom.org/c/libosmo-gprs/+/30797/comment/e2e7db81_9605ce2e
PS1, Line 63: static const char *testData[] = {
> See my message above. If you think this is really important, it can be done in a separate patch.
The important part is that you fix & re-push it immediatelly after seeing it so that others don't need to waste time reviewing or discussing this 😄
Feel free to fix as you want.
--
To view, visit https://gerrit.osmocom.org/c/libosmo-gprs/+/30797
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: libosmo-gprs
Gerrit-Branch: master
Gerrit-Change-Id: I39a29dc9b5b22ce4374ae33336696014e326d012
Gerrit-Change-Number: 30797
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Comment-Date: Mon, 02 Jan 2023 12:53:39 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: fixeria <vyanitskiy(a)sysmocom.de>
Comment-In-Reply-To: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: comment
Attention is currently required from: pespin.
fixeria has posted comments on this change. ( https://gerrit.osmocom.org/c/libosmo-gprs/+/30797 )
Change subject: rlcmac: add decoder and test vectors for IA Rest Octets
......................................................................
Patch Set 1:
(1 comment)
File tests/rlcmac/ts_44_018_test.c:
https://gerrit.osmocom.org/c/libosmo-gprs/+/30797/comment/790b6ccd_1ccd31b5
PS1, Line 63: static const char *testData[] = {
> > static const char * array should probably be static const char * const […]
See my message above. If you think this is really important, it can be done in a separate patch.
--
To view, visit https://gerrit.osmocom.org/c/libosmo-gprs/+/30797
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: libosmo-gprs
Gerrit-Branch: master
Gerrit-Change-Id: I39a29dc9b5b22ce4374ae33336696014e326d012
Gerrit-Change-Number: 30797
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: pespin <pespin(a)sysmocom.de>
Gerrit-Comment-Date: Mon, 02 Jan 2023 12:51:08 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: comment
Attention is currently required from: pespin.
Hello Jenkins Builder,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/libosmo-gprs/+/30813
to look at the new patch set (#2).
Change subject: tests/llc: Test gprs_llc_is_retransmit()
......................................................................
tests/llc: Test gprs_llc_is_retransmit()
Imported from osmo-sgsn.git 4398ac073b7fc8363882b5f7414470b73d4f446a
./tests/gprs/gprs_test.c.
Change-Id: I4104ee9cc458b7d169ee9761e02369442058675a
---
M tests/llc/Makefile.am
A tests/llc/llc_test.c
A tests/llc/llc_test.err
A tests/llc/llc_test.ok
M tests/testsuite.at
5 files changed, 121 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-gprs refs/changes/13/30813/2
--
To view, visit https://gerrit.osmocom.org/c/libosmo-gprs/+/30813
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: libosmo-gprs
Gerrit-Branch: master
Gerrit-Change-Id: I4104ee9cc458b7d169ee9761e02369442058675a
Gerrit-Change-Number: 30813
Gerrit-PatchSet: 2
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Attention: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: newpatchset
Jenkins Builder has posted comments on this change. ( https://gerrit.osmocom.org/c/libosmo-gprs/+/30813 )
Change subject: tests/llc: Test gprs_llc_is_retransmit()
......................................................................
Patch Set 1:
(9 comments)
File tests/llc/llc_test.c:
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-2317):
https://gerrit.osmocom.org/c/libosmo-gprs/+/30813/comment/5ba18c04_9b2e92dd
PS1, Line 29: #define ASSERT_FALSE(x) if (x) { printf("Should have returned false.\n"); abort(); }
Macros starting with if should be enclosed by a do - while loop to avoid possible if/else logic defects
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-2317):
https://gerrit.osmocom.org/c/libosmo-gprs/+/30813/comment/75a28e8f_348e2432
PS1, Line 30: #define ASSERT_TRUE(x) if (!x) { printf("Should have returned true.\n"); abort(); }
Macros starting with if should be enclosed by a do - while loop to avoid possible if/else logic defects
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-2317):
https://gerrit.osmocom.org/c/libosmo-gprs/+/30813/comment/845cc372_090b4051
PS1, Line 48: ASSERT_TRUE (nu_is_retransmission(0, 1));
space prohibited between function name and open parenthesis '('
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-2317):
https://gerrit.osmocom.org/c/libosmo-gprs/+/30813/comment/c4309079_bef56ec7
PS1, Line 51: ASSERT_TRUE (nu_is_retransmission(0, 1));
space prohibited between function name and open parenthesis '('
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-2317):
https://gerrit.osmocom.org/c/libosmo-gprs/+/30813/comment/fba044ac_c19607db
PS1, Line 52: ASSERT_TRUE (nu_is_retransmission(511, 1));
space prohibited between function name and open parenthesis '('
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-2317):
https://gerrit.osmocom.org/c/libosmo-gprs/+/30813/comment/230dc13a_050408a8
PS1, Line 53: ASSERT_TRUE (nu_is_retransmission(483, 1));
space prohibited between function name and open parenthesis '('
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-2317):
https://gerrit.osmocom.org/c/libosmo-gprs/+/30813/comment/cf0f30d9_f9b30b3b
PS1, Line 54: ASSERT_TRUE (nu_is_retransmission(482, 1));
space prohibited between function name and open parenthesis '('
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-2317):
https://gerrit.osmocom.org/c/libosmo-gprs/+/30813/comment/784378ab_43ac3427
PS1, Line 62: ASSERT_TRUE (nu_is_retransmission(510, 511)); // behind
space prohibited between function name and open parenthesis '('
Robot Comment from checkpatch (run ID jenkins-gerrit-lint-2317):
https://gerrit.osmocom.org/c/libosmo-gprs/+/30813/comment/de454c9c_e8ccf652
PS1, Line 63: ASSERT_TRUE (nu_is_retransmission(481, 511)); // behind
space prohibited between function name and open parenthesis '('
--
To view, visit https://gerrit.osmocom.org/c/libosmo-gprs/+/30813
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: libosmo-gprs
Gerrit-Branch: master
Gerrit-Change-Id: I4104ee9cc458b7d169ee9761e02369442058675a
Gerrit-Change-Number: 30813
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-CC: Jenkins Builder
Gerrit-Comment-Date: Mon, 02 Jan 2023 12:25:03 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment