install-apps: script to install NDN applications required for testing
test-ndntlvping: sample test case for testing ndn-tlv-ping
Change-Id: Ib54bd606f6854672ed890d3971ff5827197435e8
refs: #1220
diff --git a/install_helpers/install_ndntraffic.py b/install_helpers/install_ndntraffic.py
new file mode 100644
index 0000000..3203dce
--- /dev/null
+++ b/install_helpers/install_ndntraffic.py
@@ -0,0 +1,14 @@
+#!/usr/bin/python2
+import os
+
+# Install ndn-traffic-generator
+def run():
+ print "\nINSTALLING ndn-traffic-generator"
+ print "********************************"
+ os.system("git clone https://github.com/named-data/ndn-traffic-generator --depth 1")
+ os.chdir("ndn-traffic-generator")
+ os.system("./waf distclean")
+ os.system("./waf configure")
+ os.system("./waf -j1")
+ os.system("sudo ./waf install")
+ os.chdir("..")