--- a/src/network/test/pcap-file-test-suite.cc Thu May 16 11:06:52 2013 -0400
+++ b/src/network/test/pcap-file-test-suite.cc Thu May 16 11:18:20 2013 -0400
@@ -894,7 +894,8 @@
// starting there in the file. We've tested this all before so we just assume
// it's all right and just seek past it.
//
- std::fseek (p, 24, SEEK_SET);
+ result = std::fseek (p, 24, SEEK_SET);
+ NS_TEST_ASSERT_MSG_EQ (result, 0, "Failed seeking past pcap header");
result = std::fread (&val32, sizeof(val32), 1, p);
NS_TEST_ASSERT_MSG_EQ (result, 1, "Unable to fread() seconds timestamp");