summaryrefslogtreecommitdiff
path: root/tools/perf
diff options
context:
space:
mode:
authorColin Ian King <colin.i.king@gmail.com>2025-02-28 09:09:41 +0000
committerNamhyung Kim <namhyung@kernel.org>2025-02-28 16:17:53 -0800
commit7e55bc0110bbb8a6f5419a178168d5df1c1fc00a (patch)
tree39ca1489228d75bcc93be1d45e1a542055a21dd3 /tools/perf
parent75100d848ef4b8ca39bb6dd3a21181e37dea27e2 (diff)
perf test: Fix spelling mistake "sythesizing" -> "synthesizing"
There are spelling mistakes in TEST_ASSERT_VAL messages. Fix them. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Link: https://lore.kernel.org/r/20250228090941.680226-1-colin.i.king@gmail.com Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Diffstat (limited to 'tools/perf')
-rw-r--r--tools/perf/tests/mmap-thread-lookup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/tests/mmap-thread-lookup.c b/tools/perf/tests/mmap-thread-lookup.c
index ddd1da9a4ba9..446a3615d720 100644
--- a/tools/perf/tests/mmap-thread-lookup.c
+++ b/tools/perf/tests/mmap-thread-lookup.c
@@ -229,11 +229,11 @@ static int mmap_events(synth_cb synth)
static int test__mmap_thread_lookup(struct test_suite *test __maybe_unused, int subtest __maybe_unused)
{
/* perf_event__synthesize_threads synthesize */
- TEST_ASSERT_VAL("failed with sythesizing all",
+ TEST_ASSERT_VAL("failed with synthesizing all",
!mmap_events(synth_all));
/* perf_event__synthesize_thread_map synthesize */
- TEST_ASSERT_VAL("failed with sythesizing process",
+ TEST_ASSERT_VAL("failed with synthesizing process",
!mmap_events(synth_process));
return 0;