aboutsummaryrefslogtreecommitdiff
path: root/src/benchmarks/nop.py
blob: c8e3712f5a54c811b60b664d85d17c05adc4c21a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from src.benchmark import Benchmark


class Benchmark_NOP(Benchmark):
    def __init__(self):
        self.name = "nop"
        self.descrition = """This benchmark does nothing for debugging only."""

        self.cmd = "sleep {tts}"
        self.requirements = ["sleep"]

        self.args = {"tts": [1]}

        super().__init__()

    def summary(self):
        pass


nop = Benchmark_NOP()