Split logs into test cases to prevent overwriting
refs #2907
Change-Id: Ia7ca07fe0d7cd7428dbba5db443e87983aaaca3f
diff --git a/test_interest_loop/test_interest_loop.py b/test_interest_loop/test_interest_loop.py
index 595d037..e08b733 100644
--- a/test_interest_loop/test_interest_loop.py
+++ b/test_interest_loop/test_interest_loop.py
@@ -29,28 +29,28 @@
def test_broadcast(self):
print ">>> Testing with Broadcast Strategy <<<"
- ret = subprocess.call(["./interest-loop-test.sh ndn:/localhost/nfd/strategy/broadcast"], shell=True)
+ ret = subprocess.call(["./interest-loop-test.sh ndn:/localhost/nfd/strategy/broadcast broadcast"], shell=True)
print "Test script return value:", ret
if ret != 0:
self.fail(self.errormsg[ret])
def test_best_route(self):
print ">>> Testing with Best-route Strategy <<<"
- ret = subprocess.call(["./interest-loop-test.sh ndn:/localhost/nfd/strategy/best-route"], shell=True)
+ ret = subprocess.call(["./interest-loop-test.sh ndn:/localhost/nfd/strategy/best-route best-route"], shell=True)
print "Test script return value:", ret
if ret != 0:
self.fail(self.errormsg[ret])
def test_client_control(self):
print ">>> Testing with Client Control Strategy <<<"
- ret = subprocess.call(["./interest-loop-test.sh ndn:/localhost/nfd/strategy/client-control"], shell=True)
+ ret = subprocess.call(["./interest-loop-test.sh ndn:/localhost/nfd/strategy/client-control client-control"], shell=True)
print "Test script return value:", ret
if ret != 0:
self.fail(self.errormsg[ret])
def test_ncc(self):
print ">>> Testing with NCC Strategy <<<"
- ret = subprocess.call(["./interest-loop-test.sh ndn:/localhost/nfd/strategy/ncc"], shell=True)
+ ret = subprocess.call(["./interest-loop-test.sh ndn:/localhost/nfd/strategy/ncc ncc"], shell=True)
print "Test script return value:", ret
if ret != 0:
self.fail(self.errormsg[ret])