network: Isolate variables declaration in NS_PCAP_TEST_EXPECT_EQ()

Also convert tabs to spaces.
This commit is contained in:
Eduardo Almeida
2022-09-27 14:18:47 +01:00
parent a4c576bf38
commit 6e541f9c87

View File

@@ -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)