[PATCH v4 4/4] perf test: add test case for --workload-attr option

From: Changbin Du
Date: Thu Jul 27 2023 - 04:47:41 EST


Ensure the sched attributes are applied to workload.

Signed-off-by: Changbin Du <changbin.du@xxxxxxxxxx>
---
tools/perf/tests/shell/stat.sh | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)

diff --git a/tools/perf/tests/shell/stat.sh b/tools/perf/tests/shell/stat.sh
index 3f1e67795490..b2279f118a97 100755
--- a/tools/perf/tests/shell/stat.sh
+++ b/tools/perf/tests/shell/stat.sh
@@ -16,6 +16,24 @@ test_default_stat() {
echo "Basic stat command test [Success]"
}

+test_stat_workload_attr() {
+ echo "stat with --workload-attr test"
+ if ! perf stat --workload-attr other,10,1 -- bash -c 'taskset -pc $$' 2>&1 | grep -E -q "current affinity list: 1"
+ then
+ echo "stat with --workload-attr test [Failed]"
+ err=1
+ return
+ fi
+
+ if ! perf stat --workload-attr other,10,1 -- bash -c 'ps -o pid,cls,ni,cmd -p $$' 2>&1 | grep -E -q "TS\s+10"
+ then
+ echo "stat with --workload-attr test [Failed]"
+ err=1
+ return
+ fi
+ echo "stat with --workload-attr test [Success]"
+}
+
test_stat_record_report() {
echo "stat record and report test"
if ! perf stat record -o - true | perf stat report -i - 2>&1 | \
@@ -147,6 +165,7 @@ test_cputype() {
}

test_default_stat
+test_stat_workload_attr
test_stat_record_report
test_stat_record_script
test_stat_repeat_weak_groups
--
2.25.1