From cd8e318a7656c84ab1ff02090bf1616ca7513fdc Mon Sep 17 00:00:00 2001 From: Pierre Pfister Date: Fri, 7 Oct 2016 16:30:03 +0100 Subject: Test Infra: Add plugin support This patch adds plugin path to vpp commandline arguments when 'make test' is run. Hence, test cases can test plugins. Change-Id: Ib90efa1f62e03b45b84533c49c7a5d040aa8cddf Signed-off-by: Pierre Pfister --- test/framework.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test/framework.py') diff --git a/test/framework.py b/test/framework.py index 0ee266ec..8bfb5513 100644 --- a/test/framework.py +++ b/test/framework.py @@ -58,10 +58,14 @@ class VppTestCase(unittest.TestCase): @classmethod def setUpConstants(cls): cls.vpp_bin = os.getenv('VPP_TEST_BIN', "vpp") + cls.plugin_path = os.getenv('VPP_TEST_PLUGIN_PATH') cls.vpp_api_test_bin = os.getenv("VPP_TEST_API_TEST_BIN", "vpp-api-test") cls.vpp_cmdline = [cls.vpp_bin, "unix", "nodaemon", "api-segment", "{", "prefix", "unittest", "}"] + if cls.plugin_path is not None: + cls.vpp_cmdline.extend(["plugin_path", cls.plugin_path]) + cls.vpp_api_test_cmdline = [cls.vpp_api_test_bin, "chroot", "prefix", "unittest"] try: -- cgit 1.2.3-korg