Move response vectors to a sub-folder

This commit is contained in:
Josh Pelkey
2011-01-20 14:39:10 -05:00
parent 28379f11af
commit c5f4efd6cf
28 changed files with 8 additions and 8 deletions

View File

@@ -107,10 +107,10 @@ void
Ns3TcpInteroperabilityTestCase::DoSetup (void)
{
//
// We expect there to be a file called tcp-interop-response-vectors.pcap" in
// the source directory of this file.
// We expect there to be a file called tcp-interop-response-vectors.pcap in
// response-vectors/ of this directory
//
m_pcapFilename = NS_TEST_SOURCEDIR + "ns3tcp-interop-response-vectors.pcap";
m_pcapFilename = NS_TEST_SOURCEDIR + "/response-vectors/ns3tcp-interop-response-vectors.pcap";
if (m_writeVectors)
{

View File

@@ -109,10 +109,10 @@ Ns3TcpLossTestCase::DoSetup (void)
{
//
// We expect there to be a file called ns3tcp-state-response-vectors.pcap in
// the source directory of this file.
// response-vectors/ of this directory
//
std::ostringstream oss;
oss << "ns3tcp-loss-" << m_tcpModel << m_testCase << "-response-vectors.pcap";
oss << "/response-vectors/ns3tcp-loss-" << m_tcpModel << m_testCase << "-response-vectors.pcap";
m_pcapFilename = NS_TEST_SOURCEDIR + oss.str ();
if (m_writeVectors)

View File

@@ -105,11 +105,11 @@ void
Ns3TcpStateTestCase::DoSetup (void)
{
//
// We expect there to be a file called ns3tcp-state-response-vectors.pcap" in
// the source directory of this file.
// We expect there to be a file called ns3tcp-state-response-vectors.pcap in
// response-vectors/ of this directory
//
std::ostringstream oss;
oss << "ns3tcp-state" << m_testCase << "-response-vectors.pcap";
oss << "/response-vectors/ns3tcp-state" << m_testCase << "-response-vectors.pcap";
m_pcapFilename = NS_TEST_SOURCEDIR + oss.str ();
if (m_writeVectors)