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_ndncppdev.py b/install_helpers/install_ndncppdev.py
new file mode 100644
index 0000000..8dc09b7
--- /dev/null
+++ b/install_helpers/install_ndncppdev.py
@@ -0,0 +1,14 @@
+#!/usr/bin/python2
+import os
+
+# Install ndn-cpp-dev
+def run():
+    print "\nINSTALLING ndn-cpp-dev"
+    print "**********************"
+    os.system("git clone https://github.com/named-data/ndn-cpp-dev --depth 1")
+    os.chdir("ndn-cpp-dev")
+    os.system("./waf distclean")
+    os.system("./waf configure")
+    os.system("./waf -j1")
+    os.system("sudo ./waf install")
+    os.chdir("..")