diff options
author | Klement Sekera <ksekera@cisco.com> | 2017-03-24 05:47:15 +0100 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2017-04-21 11:24:05 +0000 |
commit | 128254a1c35585c9658d9ef31d688b46cbe90f0d (patch) | |
tree | 5cc533199e3c52e1f648052d50af5a7e69aa083a | |
parent | 8a74f2a4808017f3a7b489f49d4a49c8074fb767 (diff) |
make test: fix broken plugin paths
Change-Id: I25a6882ec503fc5bb3694411fbdc2eb1f1e1fafc
Signed-off-by: Klement Sekera <ksekera@cisco.com>
(cherry picked from commit 6abbc2884a0d2006f2b7cc1d9f5b74cefbb7ac78)
-rw-r--r-- | test/framework.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/framework.py b/test/framework.py index fe6a8a531f4..eb3a9d7e6cc 100644 --- a/test/framework.py +++ b/test/framework.py @@ -152,6 +152,8 @@ class VppTestCase(unittest.TestCase): if cls.extern_plugin_path is not None: plugin_path = "%s:%s" % ( cls.plugin_path, cls.extern_plugin_path) + else: + plugin_path = cls.plugin_path elif cls.extern_plugin_path is not None: plugin_path = cls.extern_plugin_path debug_cli = "" |