Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 57361846b52bc686112da6ca5368d11210796804 authored by Linus Torvalds on 02 September 2018, 21:37:30 UTC
Linux 4.19-rc2
Tip revision: 5736184
rootPlugin.py
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)
back to top