3 from TdcPlugin
import TdcPlugin
5 from tdc_config
import *
8 class SubPlugin(TdcPlugin
):
10 self
.sub_class
= 'root/SubPlugin'
13 def pre_suite(self
, testcount
, testidlist
):
14 # run commands before test_runner goes into a test loop
15 super().pre_suite(testcount
, testidlist
)
18 print('This script must be run with root privileges', file=sys
.stderr
)