Skip to content

Commit 921f174

Browse files
committed
Merge branch 'next' into agpl_next
2 parents 655a098 + 179f7d8 commit 921f174

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/ccpp.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
os: [ubuntu-22.04, ubuntu-20.04, ubuntu-18.04]
10+
os: [ubuntu-22.04, ubuntu-20.04]
1111
compiler: [gcc, clang]
1212
steps:
1313
- uses: actions/checkout@v3
@@ -23,13 +23,11 @@ jobs:
2323
strategy:
2424
fail-fast: false
2525
matrix:
26-
os: [ubuntu-20.04, ubuntu-18.04]
26+
os: [ubuntu-20.04]
2727
compiler: [gcc, clang]
2828
include:
2929
- os: ubuntu-20.04
3030
distro: ubuntu20.04
31-
- os: ubuntu-18.04
32-
distro: ubuntu18.04
3331
steps:
3432
- uses: actions/checkout@v3
3533
- name: Build srsRAN on aarch64 ${{ matrix.os }}

lib/test/asn1/srsran_asn1_rrc_meas_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ int meas_obj_test()
4242
cbit_ref bref(&rrc_msg[0], sizeof(rrc_msg));
4343

4444
ul_dcch_msg_s ul_dcch_msg;
45-
ul_dcch_msg.unpack(bref);
45+
TESTASSERT(ul_dcch_msg.unpack(bref) == SRSASN_SUCCESS);
4646

4747
TESTASSERT(ul_dcch_msg.msg.type() == ul_dcch_msg_type_c::types::c1);
4848
TESTASSERT(ul_dcch_msg.msg.c1().type() == ul_dcch_msg_type_c::c1_c_::types::meas_report);

0 commit comments

Comments
 (0)