Move response vectors to a sub-folder
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user