perf test: Fix spelling mistake "sythesizing" -> "synthesizing"
authorColin Ian King <colin.i.king@gmail.com>
Fri, 28 Feb 2025 09:09:41 +0000 (09:09 +0000)
committerNamhyung Kim <namhyung@kernel.org>
Sat, 1 Mar 2025 00:17:53 +0000 (16:17 -0800)
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>
tools/perf/tests/mmap-thread-lookup.c

index ddd1da9a4ba9a74bf8baff3b997b5b80a93eaad6..446a3615d7202484f93d51242d422efdb0736236 100644 (file)
@@ -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;