From: Vratko Polak Date: Thu, 21 May 2015 14:56:04 +0000 (+0200) Subject: Tools: Dummy play.py file added X-Git-Tag: release/lithium~75 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=integration%2Ftest.git;a=commitdiff_plain;h=565393be43d2e615ca9ed561ec454544f068c50d Tools: Dummy play.py file added There are jobs running "bgpuser" suite, which relies on play.py script already in suite setup, so currently it skips all test cases. The full-blown play.py has still several days to become polished enough to warrant merge into repository; this change adds a file that just prints a message and quits. The suite would still mostly fail because of that, but with this file in place, the suite would at least test for presence of Bug 3182. Change-Id: Iee27fecc82e9d701e36a061766c9976598ada990 Signed-off-by: Vratko Polak --- diff --git a/test/tools/fastbgp/play.py b/test/tools/fastbgp/play.py new file mode 100644 index 0000000000..bd52ca738f --- /dev/null +++ b/test/tools/fastbgp/play.py @@ -0,0 +1,3 @@ +"""Dummy placeholder for future full-blown utility.""" + +print "Play utility is not merged to integration repository yet!"