integration-tests: remote prefix registration
Change-Id: Ia0e81879ed353307b325c2ed86b35d7b776b9994
refs: #2201
diff --git a/install_helpers/install_repo.py b/install_helpers/install_repo.py
new file mode 100644
index 0000000..10e2dff
--- /dev/null
+++ b/install_helpers/install_repo.py
@@ -0,0 +1,14 @@
+#!/usr/bin/python2
+import os
+
+# Install ndn-tlv-ping
+def run():
+ print "\nINSTALLING repo-ng"
+ print "***********************"
+ os.system("git clone https://github.com/named-data/repo-ng --depth 1")
+ os.chdir("repo-ng")
+ os.system("./waf distclean")
+ os.system("./waf configure")
+ os.system("./waf -j1")
+ os.system("sudo ./waf install")
+ os.chdir("..")