Commit 8368a9ed authored by Lionel Gauthier's avatar Lionel Gauthier

TEST FOR LTE DONGLE

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@4835 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent 2d9f22e0
......@@ -29,12 +29,11 @@ Address : Eurecom, 2229, route des crêtes, 06560 Valbonne Sophia Antipolis
#define RLC_AM_MODULE
#define RLC_AM_STATUS_REPORT_C
//-----------------------------------------------------------------------------
#ifdef USER_MODE
#include <assert.h>
#endif
#include <string.h>
//-----------------------------------------------------------------------------
#include "platform_types.h"
//-----------------------------------------------------------------------------
#include "assertions.h"
#include "list.h"
#include "rlc_am.h"
#include "LAYER2/MAC/extern.h"
......@@ -157,6 +156,15 @@ signed int rlc_am_get_control_pdu_infos(rlc_am_pdu_sn_10_t* headerP, s16_t total
return -2;
}
}
#ifdef RLC_TEST_AGREGATED_DATA_PDU_WITH_CONTROL_PDU
AssertFatal( (uint64_t)((uint64_t)byte_pos + (bit_pos +7)/8 - (uint64_t)headerP) == total_sizeP,
"Remaining bytes in transport block: %l",
total_sizeP - (int64_t)((uint64_t)byte_pos + (bit_pos +7)/8 - (uint64_t)headerP ));
#endif
} else {
#ifdef RLC_TEST_AGREGATED_DATA_PDU_WITH_CONTROL_PDU
AssertFatal( total_sizeP == 2, "Remaining bytes in transport block: %l", total_sizeP - 2);
#endif
}
return 0;
} else {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment