Removed unnecessary macro and some newlines.

This commit is contained in:
Pedro Alvarez 2020-02-20 11:08:53 +00:00 committed by Andre Puschmann
parent 08c81c274b
commit 5dd081846b
3 changed files with 1 additions and 13 deletions

View File

@ -25,20 +25,10 @@
#include "srslte/common/buffer_pool.h"
#include "srslte/common/log_filter.h"
#include "srslte/common/security.h"
#include "srslte/common/test_common.h"
#include "srslte/interfaces/ue_interfaces.h"
#include <iostream>
/*
* Functions and macros for comparisions
*/
#define TESTASSERT(cond) \
{ \
if (!(cond)) { \
std::cout << "[" << __FUNCTION__ << "][Line " << __LINE__ << "]: FAIL at " << (#cond) << std::endl; \
return -1; \
} \
}
int compare_two_packets(const srslte::unique_byte_buffer_t& msg1, const srslte::unique_byte_buffer_t& msg2)
{
TESTASSERT(msg1->N_bytes == msg2->N_bytes);

View File

@ -88,7 +88,6 @@ public:
void set_pdcp_initial_state(pdcp_lte_initial_state init_state)
{
pdcp.set_tx_count(init_state.tx_count);
pdcp.set_rx_hfn(init_state.rx_hfn);
pdcp.set_next_pdcp_rx_sn(init_state.next_pdcp_rx_sn);

View File

@ -34,7 +34,6 @@ int test_rx(std::vector<pdcp_test_event_t> events,
srslte::log* log)
{
srslte::pdcp_config_t cfg_rx = {1,
rb_type,
srslte::SECURITY_DIRECTION_DOWNLINK,