summaryrefslogtreecommitdiff
path: root/tools/testing/selftests/rseq
diff options
context:
space:
mode:
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>2022-12-16 17:53:32 +0300
committerPeter Zijlstra <peterz@infradead.org>2022-12-27 14:52:16 +0300
commitb344b8f2d88dbf095caf97ac57fd3645843fa70f (patch)
tree5c3b065ef3d7ca30fc72326cb31e732d8142f518 /tools/testing/selftests/rseq
parent14a8644d4f76fb4afdfcc46e9193af867241bd42 (diff)
downloadlinux-b344b8f2d88dbf095caf97ac57fd3645843fa70f.tar.xz
selftests/rseq: Add mm_numa_cid to test script
Add mm_numa_cid tests to the run_param_test.sh test script. Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Link: https://lkml.kernel.org/r/20221216145332.205095-1-mathieu.desnoyers@efficios.com
Diffstat (limited to 'tools/testing/selftests/rseq')
-rwxr-xr-xtools/testing/selftests/rseq/run_param_test.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/testing/selftests/rseq/run_param_test.sh b/tools/testing/selftests/rseq/run_param_test.sh
index 8d31426ab41f..603b3b69d20c 100755
--- a/tools/testing/selftests/rseq/run_param_test.sh
+++ b/tools/testing/selftests/rseq/run_param_test.sh
@@ -47,6 +47,11 @@ function do_tests()
./param_test_mm_cid ${TEST_LIST[$i]} -r ${REPS} -t ${NR_THREADS} ${@} ${EXTRA_ARGS} || exit 1
echo "Running mm_cid compare-twice test ${TEST_NAME[$i]}"
./param_test_mm_cid_compare_twice ${TEST_LIST[$i]} -r ${REPS} -t ${NR_THREADS} ${@} ${EXTRA_ARGS} || exit 1
+
+ echo "Running mm_numa_cid test ${TEST_NAME[$i]}"
+ ./param_test_mm_numa_cid ${TEST_LIST[$i]} -r ${REPS} -t ${NR_THREADS} ${@} ${EXTRA_ARGS} || exit 1
+ echo "Running mm_numa_cid compare-twice test ${TEST_NAME[$i]}"
+ ./param_test_mm_numa_cid_compare_twice ${TEST_LIST[$i]} -r ${REPS} -t ${NR_THREADS} ${@} ${EXTRA_ARGS} || exit 1
let "i++"
done
}