network: Isolate variables declaration in NS_PCAP_TEST_EXPECT_EQ()
Also convert tabs to spaces.
This commit is contained in:
@@ -41,14 +41,16 @@
|
||||
oss << filename; \
|
||||
std::string expected = CreateDataDirFilename (oss.str()); \
|
||||
std::string got = CreateTempDirFilename (oss.str()); \
|
||||
uint32_t sec(0), usec(0), packets(0); \
|
||||
/** \todo support default PcapWriter snap length here */ \
|
||||
bool diff = PcapFile::Diff (got, expected, sec, usec, packets); \
|
||||
uint32_t sec{0}; \
|
||||
uint32_t usec{0}; \
|
||||
uint32_t packets{0}; \
|
||||
/** \todo support default PcapWriter snap length here */ \
|
||||
bool diff = PcapFile::Diff (got, expected, sec, usec, packets); \
|
||||
NS_TEST_EXPECT_MSG_EQ (diff, false, \
|
||||
"PCAP traces " \
|
||||
<< got << " and " << expected \
|
||||
<< " differ starting from packet " \
|
||||
<< packets << " at " << sec << " s " \
|
||||
"PCAP traces " \
|
||||
<< got << " and " << expected \
|
||||
<< " differ starting from packet " \
|
||||
<< packets << " at " << sec << " s " \
|
||||
<< usec << " us"); \
|
||||
} while (false)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user