tests: perfmon - Added a check if test is running with root privileges
Type: test Change-Id: I1910f3ef79e9018aee032daca0f1932eccb7b9f9 Signed-off-by: adrianvillin <avillin@cisco.com>
This commit is contained in:
@ -1,7 +1,13 @@
|
|||||||
from asfframework import VppAsfTestCase, VppTestRunner
|
from asfframework import VppAsfTestCase, VppTestRunner
|
||||||
|
from vpp_qemu_utils import can_create_namespaces
|
||||||
|
from config import config
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
|
|
||||||
|
@unittest.skipIf(
|
||||||
|
not can_create_namespaces("perfmon_chk"), "Test is not running with root privileges"
|
||||||
|
)
|
||||||
|
@unittest.skipIf("perfmon" in config.excluded_plugins, "Exclude Perfmon plugin tests")
|
||||||
class TestPerfmon(VppAsfTestCase):
|
class TestPerfmon(VppAsfTestCase):
|
||||||
"""Simple perfmon test"""
|
"""Simple perfmon test"""
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user