mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-09 07:23:14 +00:00
tools/power turbostat: Add selftests
Signed-off-by: Patryk Wlazlyn <patryk.wlazlyn@linux.intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
parent
05a2f07db8
commit
17d1ea136b
59
tools/testing/selftests/turbostat/defcolumns.py
Executable file
59
tools/testing/selftests/turbostat/defcolumns.py
Executable file
@ -0,0 +1,59 @@
|
||||
#!/bin/env python3
|
||||
|
||||
import subprocess
|
||||
from shutil import which
|
||||
|
||||
turbostat = which('turbostat')
|
||||
if turbostat is None:
|
||||
print('Could not find turbostat binary')
|
||||
exit(1)
|
||||
|
||||
timeout = which('timeout')
|
||||
if timeout is None:
|
||||
print('Could not find timeout binary')
|
||||
exit(1)
|
||||
|
||||
proc_turbostat = subprocess.run([turbostat, '--list'], capture_output = True)
|
||||
if proc_turbostat.returncode != 0:
|
||||
print(f'turbostat failed with {proc_turbostat.returncode}')
|
||||
exit(1)
|
||||
|
||||
#
|
||||
# By default --list reports also "usec" and "Time_Of_Day_Seconds" columns
|
||||
# which are only visible when running with --debug.
|
||||
#
|
||||
expected_columns_debug = proc_turbostat.stdout.replace(b',', b'\t').strip()
|
||||
expected_columns = expected_columns_debug.replace(b'usec\t', b'').replace(b'Time_Of_Day_Seconds\t', b'').replace(b'X2APIC\t', b'').replace(b'APIC\t', b'')
|
||||
|
||||
#
|
||||
# Run turbostat with no options for 10 seconds and send SIGINT
|
||||
#
|
||||
timeout_argv = [timeout, '--preserve-status', '-s', 'SIGINT', '-k', '3', '1s']
|
||||
turbostat_argv = [turbostat, '-i', '0.250']
|
||||
|
||||
print(f'Running turbostat with {turbostat_argv=}... ', end = '', flush = True)
|
||||
proc_turbostat = subprocess.run(timeout_argv + turbostat_argv, capture_output = True)
|
||||
if proc_turbostat.returncode != 0:
|
||||
print(f'turbostat failed with {proc_turbostat.returncode}')
|
||||
exit(1)
|
||||
actual_columns = proc_turbostat.stdout.split(b'\n')[0]
|
||||
if expected_columns != actual_columns:
|
||||
print(f'turbostat column check failed\n{expected_columns=}\n{actual_columns=}')
|
||||
exit(1)
|
||||
print('OK')
|
||||
|
||||
#
|
||||
# Same, but with --debug
|
||||
#
|
||||
turbostat_argv.append('--debug')
|
||||
|
||||
print(f'Running turbostat with {turbostat_argv=}... ', end = '', flush = True)
|
||||
proc_turbostat = subprocess.run(timeout_argv + turbostat_argv, capture_output = True)
|
||||
if proc_turbostat.returncode != 0:
|
||||
print(f'turbostat failed with {proc_turbostat.returncode}')
|
||||
exit(1)
|
||||
actual_columns = proc_turbostat.stdout.split(b'\n')[0]
|
||||
if expected_columns_debug != actual_columns:
|
||||
print(f'turbostat column check failed\n{expected_columns_debug=}\n{actual_columns=}')
|
||||
exit(1)
|
||||
print('OK')
|
Loading…
Reference in New Issue
Block a user