File tree 2 files changed +3
-5
lines changed 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 7
7
strategy :
8
8
fail-fast : false
9
9
matrix :
10
- os : [ubuntu-22.04, ubuntu-20.04, ubuntu-18.04 ]
10
+ os : [ubuntu-22.04, ubuntu-20.04]
11
11
compiler : [gcc, clang]
12
12
steps :
13
13
- uses : actions/checkout@v3
@@ -23,13 +23,11 @@ jobs:
23
23
strategy :
24
24
fail-fast : false
25
25
matrix :
26
- os : [ubuntu-20.04, ubuntu-18.04 ]
26
+ os : [ubuntu-20.04]
27
27
compiler : [gcc, clang]
28
28
include :
29
29
- os : ubuntu-20.04
30
30
distro : ubuntu20.04
31
- - os : ubuntu-18.04
32
- distro : ubuntu18.04
33
31
steps :
34
32
- uses : actions/checkout@v3
35
33
- name : Build srsRAN on aarch64 ${{ matrix.os }}
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ int meas_obj_test()
42
42
cbit_ref bref (&rrc_msg[0 ], sizeof (rrc_msg));
43
43
44
44
ul_dcch_msg_s ul_dcch_msg;
45
- ul_dcch_msg.unpack (bref);
45
+ TESTASSERT ( ul_dcch_msg.unpack (bref) == SRSASN_SUCCESS );
46
46
47
47
TESTASSERT (ul_dcch_msg.msg .type () == ul_dcch_msg_type_c::types::c1);
48
48
TESTASSERT (ul_dcch_msg.msg .c1 ().type () == ul_dcch_msg_type_c::c1_c_::types::meas_report);
You can’t perform that action at this time.
0 commit comments