Skip to content

Commit

Permalink
tools: tc-testing: rootPlugin
Browse files Browse the repository at this point in the history
Move the functionality that checks for root permissions into a plugin.

Signed-off-by: Brenda J. Butler <bjb@mojatatu.com>
Acked-by: Lucas Bates <lucasb@mojatatu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Brenda J. Butler authored and David S. Miller committed Feb 15, 2018
1 parent 93707cb commit f6926e8
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
19 changes: 19 additions & 0 deletions tools/testing/selftests/tc-testing/plugin-lib/rootPlugin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import os
import sys
from TdcPlugin import TdcPlugin

from tdc_config import *


class SubPlugin(TdcPlugin):
def __init__(self):
self.sub_class = 'root/SubPlugin'
super().__init__()

def pre_suite(self, testcount, testidlist):
# run commands before test_runner goes into a test loop
super().pre_suite(testcount, testidlist)

if os.geteuid():
print('This script must be run with root privileges', file=sys.stderr)
exit(1)
4 changes: 0 additions & 4 deletions tools/testing/selftests/tc-testing/tdc.py
Original file line number Diff line number Diff line change
Expand Up @@ -579,10 +579,6 @@ def set_operation_mode(pm, args):
list_test_cases(alltests)
exit(0)

if (os.geteuid() != 0):
print("This script must be run with root privileges.\n")
exit(1)

ns_create(args, pm)

if len(alltests):
Expand Down

0 comments on commit f6926e8

Please sign in to comment.