aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/python/PerfUtil.py
diff options
context:
space:
mode:
Diffstat (limited to 'resources/libraries/python/PerfUtil.py')
-rw-r--r--resources/libraries/python/PerfUtil.py22
1 files changed, 15 insertions, 7 deletions
diff --git a/resources/libraries/python/PerfUtil.py b/resources/libraries/python/PerfUtil.py
index 51832dee48..4c286b455e 100644
--- a/resources/libraries/python/PerfUtil.py
+++ b/resources/libraries/python/PerfUtil.py
@@ -35,13 +35,21 @@ class PerfUtil:
:type duration: int
"""
cpu = cpu_list if cpu_list else u"0-$(($(nproc) - 1))"
- command = (
- u"perf stat"
- f" --cpu {cpu} --no-aggr"
- f" --event '{{{Constants.PERF_STAT_EVENTS}}}'"
- f" --interval-print 1000 "
- f" -- sleep {int(duration)}"
- )
+ if Constants.PERF_STAT_EVENTS:
+ command = (
+ u"perf stat"
+ f" --cpu {cpu} --no-aggr"
+ f" --event '{{{Constants.PERF_STAT_EVENTS}}}'"
+ f" --interval-print 1000 "
+ f" -- sleep {int(duration)}"
+ )
+ else:
+ command = (
+ u"perf stat"
+ f" --cpu {cpu} --no-aggr"
+ f" --interval-print 1000 "
+ f" -- sleep {int(duration)}"
+ )
exec_cmd(node, command, sudo=True)
@staticmethod